EventMappingSettingsCollection.Add(EventMappingSettings) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EventMappingSettings 개체를 컬렉션에 추가합니다.
public:
void Add(System::Web::Configuration::EventMappingSettings ^ eventMappingSettings);
public void Add (System.Web.Configuration.EventMappingSettings eventMappingSettings);
member this.Add : System.Web.Configuration.EventMappingSettings -> unit
Public Sub Add (eventMappingSettings As EventMappingSettings)
매개 변수
- eventMappingSettings
- EventMappingSettings
컬렉션에 추가할 EventMappingSettings 개체입니다.
예외
EventMappingSettings 개체가 컬렉션에 이미 있거나 컬렉션이 읽기 전용인 경우
예제
다음 코드 예제에서는 Add 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HealthMonitoringSection 클래스입니다.
// Add a EventMappingsSettings object to the EventMappings collection property.
EventMappingSettings eventMappingSetting = new EventMappingSettings(
"Failure Audits", "System.Web.Management.WebAuditEvent, System.Web");
eventMappingSetting.Name = "All Errors";
eventMappingSetting.Type =
"System.Web.Management.WebErrorEvent, System.Web";
eventMappingSetting.StartEventCode = 0;
eventMappingSetting.EndEventCode = 4096;
healthMonitoringSection.EventMappings.Add(eventMappingSetting);
' Add a EventMappingsSettings object to the EventMappings collection property.
Dim eventMappingSetting As EventMappingSettings = New EventMappingSettings( _
"Failure Audits", "System.Web.Management.WebAuditEvent, System.Web")
eventMappingSetting.Name = "All Errors"
eventMappingSetting.Type = _
"System.Web.Management.WebErrorEvent, System.Web"
eventMappingSetting.StartEventCode = 0
eventMappingSetting.EndEventCode = 4096
healthMonitoringSection.EventMappings.Add(eventMappingSetting)
설명
컬렉션에 이미 포함 되지 해야는 EventMappingSettings 동일한 이름 가진 개체입니다.