ILogger.Parameters Property

Definition

This property holds the user-specified parameters to the logger. If parameters are not provided, a logger should revert to defaults. If a logger does not take parameters, it can ignore this property.

public:
 property System::String ^ Parameters { System::String ^ get(); void set(System::String ^ value); };
public string Parameters { get; set; }
member this.Parameters : string with get, set
Public Property Parameters As String

Property Value

The parameter string (can be null).

Remarks

Parameters may be represented in this property in any format. For example, to represent two parameters and values, you could use the string "parameter1=value1;parameter2=value2".

This property can be a null reference (Nothing in Visual Basic).

Applies to