LogId.LogName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the fully-qualified name of the given log stream.
public:
property System::String ^ LogName { System::String ^ get(); };
[System.Runtime.Serialization.DataMember(Order=0)]
public string LogName { [System.Runtime.CompilerServices.IsReadOnly] get; }
[<System.Runtime.Serialization.DataMember(Order=0)>]
[<get: System.Runtime.CompilerServices.IsReadOnly>]
member this.LogName : string
Public ReadOnly Property LogName As String
Property Value
- Attributes
Remarks
The fully-qualified name of the log stream. This is globally unique. The String should be similar to a fully-qualified C# class name, like "Microsoft.VisualStudio.Debugger". Specifically, at least one "." must appear in the name, the name may not begin, nor end with a "." and no more than one "." may appear in a row (no ".." in the name). Allowable characters for the name are: A-Z, a-z, 0-9 and _. The "." is also an allowable character with the restrictions above.