EventLog.MachineName Property
Gets or sets the name of the computer on which to read or write events.
Assembly: System (in System.dll)
Property Value
Type: System.StringThe name of the server on which the event log resides. The default is the local computer (".").
| Exception | Condition |
|---|---|
| ArgumentException | The computer name is invalid. |
If you write to an event log, you must associate a Source with your event log object to connect it to a particular log. It is not necessary to specify the Source property when only reading from a log. You can specify only the Log name and MachineName (server computer name).
Note: |
|---|
You need not specify the MachineName if you are connecting to a log. If you do not specify the MachineName, the local computer (".") is assumed. |
A source can only be registered to one log at a time. If the Source property was set for an instance of EventLog, you cannot change the MachineName property for that EventLog without changing the value of Source or calling DeleteEventSource first. If you change the MachineName property, the EventLog closes all handles and reattaches to the log and source on the new computer.
The MachineName value cannot be an empty string. If it is not explicitly set, it defaults to the local computer (".").
- EventLogPermission
for writing the event log information on the computer. Associated enumeration: EventLogPermissionAccess.Write
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: