EventLog.MachineName Property
Gets or sets the name of the computer on which to read or write events.
Namespace: System.Diagnostics
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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note