Method | Description | |
---|---|---|
FindEntryByEntryType ( System.Diagnostics.EventLog eventLog, EventLogEntryType entryType ) : IEnumerable |
지정된
|
|
FindEntryByEntryType ( string logName, string source, EventLogEntryType entryType ) : IEnumerable |
지정된
|
|
FindEntryByGeneratedTime ( System.Diagnostics.EventLog eventLog, System.DateTime generatedTime, bool isBefore ) : IEnumerable |
EventLogEntry의 생성 시간을 기준으로 검색한다.
|
|
FindEntryByGeneratedTime ( string logName, string source, System.DateTime generatedTime, bool isBefore ) : IEnumerable |
EventLogEntry의 생성 시간을 기준으로 검색한다.
|
|
FindEntryBySource ( System.Diagnostics.EventLog eventLog, string source, bool ignoreCase ) : IEnumerable |
|
|
FindEntryBySource ( string logName, string source, bool ignoreCase ) : IEnumerable |
|
|
GetEventLog ( string logName ) : System.Diagnostics.EventLog | ||
GetEventLog ( string logName, string source ) : System.Diagnostics.EventLog |
해당 EventLog를 반환한다. Event Source가 없다면 생성한다.
|
|
GetEventLog ( string logName, string source, string machineName ) : System.Diagnostics.EventLog |
해당 EventLog를 반환한다. Event Source가 없다면 생성한다.
|
|
SetLogMaxSize ( string logName, int maxSize ) : void |
이벤트 로그 크기를 조절한다. 레지스트리를 조작할 수 있는 권한이 있어야 한다. |
|
WriteEntry ( string message, EventLogEntryType type ) : void |
이벤트 로그를 쓴다.
|
|
WriteEntry ( string logName, string source, string message, EventLogEntryType type ) : void |
이벤트 로그를 쓴다.
|
|
WriteEntry ( string logName, string source, string message, EventLogEntryType type, int eventID ) : void |
이벤트 로그를 쓴다.
|
|
WriteEntry ( string logName, string source, string message, EventLogEntryType type, int eventID, short category ) : void |
이벤트 로그를 쓴다.
|
|
WriteEntry ( string logName, string source, string message, EventLogEntryType type, int eventID, short category, byte rawData ) : void |
이벤트 로그를 쓴다.
|
public static FindEntryByEntryType ( System.Diagnostics.EventLog eventLog, EventLogEntryType entryType ) : IEnumerable |
||
eventLog | System.Diagnostics.EventLog | 대상 |
entryType | EventLogEntryType | 검색할 |
return | IEnumerable |
public static FindEntryByEntryType ( string logName, string source, EventLogEntryType entryType ) : IEnumerable |
||
logName | string | |
source | string | 검색할 |
entryType | EventLogEntryType | 검색할 |
return | IEnumerable |
public static FindEntryByGeneratedTime ( System.Diagnostics.EventLog eventLog, System.DateTime generatedTime, bool isBefore ) : IEnumerable |
||
eventLog | System.Diagnostics.EventLog | 대성 EventLog 인스턴스 |
generatedTime | System.DateTime | 검색할 기준 시간 |
isBefore | bool | 기준시간 전/후를 판단하는 옵션 |
return | IEnumerable |
public static FindEntryByGeneratedTime ( string logName, string source, System.DateTime generatedTime, bool isBefore ) : IEnumerable |
||
logName | string | 로그 엔트리 목록 (예: Application, System) |
source | string | 로그 소스 |
generatedTime | System.DateTime | 검색할 기준 시간 |
isBefore | bool | 기준시간 전/후를 판단하는 옵션 |
return | IEnumerable |
public static FindEntryBySource ( System.Diagnostics.EventLog eventLog, string source, bool ignoreCase ) : IEnumerable |
||
eventLog | System.Diagnostics.EventLog | 검색 대상 |
source | string | 검색할 |
ignoreCase | bool | 대소문자 구분 여부 |
return | IEnumerable |
public static FindEntryBySource ( string logName, string source, bool ignoreCase ) : IEnumerable |
||
logName | string | |
source | string | 검색할 |
ignoreCase | bool | 대소문자 구분 여부 |
return | IEnumerable |
public static GetEventLog ( string logName ) : System.Diagnostics.EventLog | ||
logName | string | |
return | System.Diagnostics.EventLog |
public static GetEventLog ( string logName, string source ) : System.Diagnostics.EventLog | ||
logName | string | 로그 이름 |
source | string | 이벤트 로그 엔트리 소스 |
return | System.Diagnostics.EventLog |
public static GetEventLog ( string logName, string source, string machineName ) : System.Diagnostics.EventLog | ||
logName | string | 로그 이름 |
source | string | 엔트리 소스 |
machineName | string | 로그가 있는 컴퓨터 |
return | System.Diagnostics.EventLog |
public static SetLogMaxSize ( string logName, int maxSize ) : void | ||
logName | string | 이벤트 로그 이름 |
maxSize | int | Log 크기, KByte 단위 |
return | void |
public static WriteEntry ( string message, EventLogEntryType type ) : void | ||
message | string | 이벤트 메시지 |
type | EventLogEntryType | 이벤트 수준(경고, 정보 등) |
return | void |
public static WriteEntry ( string logName, string source, string message, EventLogEntryType type ) : void | ||
logName | string | 이벤트 로그 명 |
source | string | 원본 |
message | string | 이벤트 메시지 |
type | EventLogEntryType | 이벤트 수준(경고, 정보 등) |
return | void |
public static WriteEntry ( string logName, string source, string message, EventLogEntryType type, int eventID ) : void | ||
logName | string | 이벤트 로그 명 |
source | string | 원본 |
message | string | 이벤트 메시지 |
type | EventLogEntryType | 이벤트 수준(경고, 정보 등) |
eventID | int | 이벤트 ID |
return | void |
public static WriteEntry ( string logName, string source, string message, EventLogEntryType type, int eventID, short category ) : void | ||
logName | string | 이벤트 로그 명 |
source | string | 원본 |
message | string | 이벤트 메시지 |
type | EventLogEntryType | 이벤트 수준(경고, 정보 등) |
eventID | int | 이벤트 ID |
category | short | 이벤트 분류 |
return | void |
public static WriteEntry ( string logName, string source, string message, EventLogEntryType type, int eventID, short category, byte rawData ) : void | ||
logName | string | 이벤트 로그 명 |
source | string | 원본 |
message | string | 이벤트 메시지 |
type | EventLogEntryType | 이벤트 수준(경고, 정보 등) |
eventID | int | 이벤트 ID |
category | short | 이벤트 분류 |
rawData | byte | |
return | void |