EventLogPermissionEntry(EventLogPermissionAccess, String) Constructor

Definition

Initializes a new instance of the EventLogPermissionEntry class.

public:
 EventLogPermissionEntry(System::Diagnostics::EventLogPermissionAccess permissionAccess, System::String ^ machineName);
public EventLogPermissionEntry (System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName);
new System.Diagnostics.EventLogPermissionEntry : System.Diagnostics.EventLogPermissionAccess * string -> System.Diagnostics.EventLogPermissionEntry
Public Sub New (permissionAccess As EventLogPermissionAccess, machineName As String)

Parameters

permissionAccess
EventLogPermissionAccess

A bitwise combination of the EventLogPermissionAccess values. The PermissionAccess property is set to this value.

machineName
String

The name of the computer on which to read or write events. The MachineName property is set to this value.

Exceptions

The computer name is invalid.

Remarks

If the application is running in a High trust zone, request for permission to the local machine must refer to the machine name as COMPUTERNAME or ".", instead of the full machine name. Full machine name is not accepted for security reasons. In addition, the COMPUTERNAME must be treated as case-sensitive.

Applies to