EventLogEntry.ReplacementStrings Property

Definition

Gets the replacement strings associated with the event log entry.

public:
 property cli::array <System::String ^> ^ ReplacementStrings { cli::array <System::String ^> ^ get(); };
public string[] ReplacementStrings { get; }
member this.ReplacementStrings : string[]
Public ReadOnly Property ReplacementStrings As String()

Property Value

String[]

An array that holds the replacement strings stored in the event entry.

Remarks

This property retrieves only the replacement strings for the entry. To retrieve the full message, read the Message property.

The ReplacementStrings property contains the localized versions of replacement strings that are used in the event log entry. If you provide resource files that contain strings in each target language for your application, you can emit event log messages in the language that is used on that computer. To do that, create an instance of the ResourceManager class for the resource assembly that contains your replacement strings. The first parameter of the ResourceManager(String, Assembly) constructor identifies the resource assembly to be used. Use the GetString method of that instance to supply localized messages for log events. The following code automatically sets the message to the language for the current culture.

ResourceManager LocRM = new ResourceManager("ReplacementStrings.TestStrings",   
      typeof(Program).Assembly);  
EventLog e1 = new EventLog("LocTest", "MyMachine", "LocTest");  
// Get the string associated with the current culture.  
e1.WriteEntry(LocRM.GetString("strMessage"),  
   EventLogEntryType.Information);  

Applies to

See also