EventRecord.FormatDescription Method

Definition

Gets the event message.

Overloads

FormatDescription()

Gets the event message in the current locale.

FormatDescription(IEnumerable<Object>)

Gets the event message, replacing variables in the message with the specified values.

FormatDescription()

Source:
EventRecord.cs
Source:
EventRecord.cs
Source:
EventRecord.cs

Gets the event message in the current locale.

public:
 abstract System::String ^ FormatDescription();
public abstract string FormatDescription ();
abstract member FormatDescription : unit -> string
Public MustOverride Function FormatDescription () As String

Returns

Returns a string that contains the event message in the current locale.

See also

Applies to

FormatDescription(IEnumerable<Object>)

Source:
EventRecord.cs
Source:
EventRecord.cs
Source:
EventRecord.cs

Gets the event message, replacing variables in the message with the specified values.

public:
 abstract System::String ^ FormatDescription(System::Collections::Generic::IEnumerable<System::Object ^> ^ values);
public abstract string FormatDescription (System.Collections.Generic.IEnumerable<object> values);
abstract member FormatDescription : seq<obj> -> string
Public MustOverride Function FormatDescription (values As IEnumerable(Of Object)) As String

Parameters

values
IEnumerable<Object>

The values used to replace variables in the event message. Variables are represented by %n, where n is a number.

Returns

Returns a string that contains the event message in the current locale.

See also

Applies to