IdentityModelEventSource.WriteInformation 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
WriteInformation(String) |
Writes an information event log by using the provided string argument and current UTC time. |
WriteInformation(String, Object[]) |
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list. |
WriteInformation(String)
Writes an information event log by using the provided string argument and current UTC time.
[System.Diagnostics.Tracing.Event(2, Level=System.Diagnostics.Tracing.EventLevel.Informational)]
public void WriteInformation (string message);
[<System.Diagnostics.Tracing.Event(2, Level=System.Diagnostics.Tracing.EventLevel.Informational)>]
member this.WriteInformation : string -> unit
Public Sub WriteInformation (message As String)
Parameters
- message
- String
The log message.
- Attributes
Applies to
WriteInformation(String, Object[])
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list.
[System.Diagnostics.Tracing.NonEvent]
public void WriteInformation (string message, params object[] args);
[<System.Diagnostics.Tracing.NonEvent>]
member this.WriteInformation : string * obj[] -> unit
Public Sub WriteInformation (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