Class LogCategoryInfo
Contains the category id and name.
Inheritance
System.Object
LogCategoryInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.Logger
Assembly: Phoenix.Abstractions.Logger.dll
Syntax
public class LogCategoryInfo
Constructors
View SourceLogCategoryInfo(Guid, String)
Initializes a new instance of the CategoryInfo class.
Declaration
public LogCategoryInfo(Guid id, string name)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | id | The id of the category. |
System.String | name | The name of the category. |
Properties
View SourceId
Gets the id for this category.
Declaration
public Guid Id { get; }
Property Value
Type | Description |
---|---|
System.Guid |
Name
Gets the name of the category.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |