EventMappingSettings 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EventMappingSettings 클래스의 새 인스턴스를 초기화합니다.
오버로드
EventMappingSettings(String, String) |
지정된 이름 및 형식을 사용하여 EventMappingSettings 클래스의 새 인스턴스를 초기화합니다. |
EventMappingSettings(String, String, Int32, Int32) |
지정된 값을 사용하여 BufferModeSettings 클래스의 새 인스턴스를 초기화합니다. |
EventMappingSettings(String, String)
지정된 이름 및 형식을 사용하여 EventMappingSettings 클래스의 새 인스턴스를 초기화합니다.
public:
EventMappingSettings(System::String ^ name, System::String ^ type);
public EventMappingSettings (string name, string type);
new System.Web.Configuration.EventMappingSettings : string * string -> System.Web.Configuration.EventMappingSettings
Public Sub New (name As String, type As String)
매개 변수
- name
- String
만들 EventMappingSettings 개체의 이름입니다.
- type
- String
사용할 이벤트 클래스의 정규화된 형식입니다.
예제
다음 코드 예제를 사용 하는 방법을 보여 줍니다는 EventMappingSettings 생성자입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HealthMonitoringSection 클래스입니다.
// Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings(
"Failure Audits", "System.Web.Management.WebAuditEvent, System.Web"));
' Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings( _
"Failure Audits", "System.Web.Management.WebAuditEvent, System.Web"))
설명
다음 표에서이 생성자에 사용 되는 기본 설정을 보여 줍니다.
설정 | 기본값 |
---|---|
StartEventCode | 0. |
EndEventCode | MaxValue. |
추가 정보
적용 대상
EventMappingSettings(String, String, Int32, Int32)
지정된 값을 사용하여 BufferModeSettings 클래스의 새 인스턴스를 초기화합니다.
public:
EventMappingSettings(System::String ^ name, System::String ^ type, int startEventCode, int endEventCode);
public EventMappingSettings (string name, string type, int startEventCode, int endEventCode);
new System.Web.Configuration.EventMappingSettings : string * string * int * int -> System.Web.Configuration.EventMappingSettings
Public Sub New (name As String, type As String, startEventCode As Integer, endEventCode As Integer)
매개 변수
- name
- String
만들 EventMappingSettings 개체의 이름입니다.
- type
- String
사용할 이벤트 클래스의 정규화된 형식입니다.
- startEventCode
- Int32
이벤트 코드 범위의 시작 값입니다.
- endEventCode
- Int32
이벤트 코드 범위의 끝 값입니다.
예제
다음 코드 예제를 사용 하는 방법을 보여 줍니다는 EventMappingSettings 생성자입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HealthMonitoringSection 클래스입니다.
// Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings(
"Success Audits", "System.Web.Management.WebAuditEvent, System.Web",
512, Int32.MaxValue));
' Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings( _
"Success Audits", "System.Web.Management.WebAuditEvent, System.Web", _
512, Int32.MaxValue))
추가 정보
적용 대상
.NET