IdentityModelEventSource.WriteVerbose Method
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.
Overloads
WriteVerbose(String) |
Writes a verbose event log by using the provided string argument and current UTC time. |
WriteVerbose(String, Object[]) |
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list. |
WriteVerbose(String)
Writes a verbose event log by using the provided string argument and current UTC time.
[System.Diagnostics.Tracing.Event(1, Level=System.Diagnostics.Tracing.EventLevel.Verbose)]
public void WriteVerbose (string message);
[<System.Diagnostics.Tracing.Event(1, Level=System.Diagnostics.Tracing.EventLevel.Verbose)>]
member this.WriteVerbose : string -> unit
Public Sub WriteVerbose (message As String)
Parameters
- message
- String
The log message.
- Attributes
Applies to
WriteVerbose(String, Object[])
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list.
[System.Diagnostics.Tracing.NonEvent]
public void WriteVerbose (string message, params object[] args);
[<System.Diagnostics.Tracing.NonEvent>]
member this.WriteVerbose : string * obj[] -> unit
Public Sub WriteVerbose (message As String, ParamArray args As Object())
Parameters
- message
- String
The log message.
- args
- Object[]
An object array that contains zero or more objects to format.
- Attributes