次の方法で共有


EventMappingSettings コンストラクター

定義

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"))

注釈

次の表は、このコンストラクターに使用される既定の設定を示しています。

設定 Default value
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))

こちらもご覧ください

適用対象