共用方式為


EventMappingSettings.Type 屬性

定義

取得或設定自訂事件型別。

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("type", DefaultValue="", IsRequired=true)]
public string Type { get; set; }
[<System.Configuration.ConfigurationProperty("type", DefaultValue="", IsRequired=true)>]
member this.Type : string with get, set
Public Property Type As String

屬性值

有效型別參考或空字串 ("")。 預設為空字串。

屬性

範例

下列程式碼範例示範如何使用 Type 屬性。 此程式碼範例是針對 類別提供的較大範例的 HealthMonitoringSection 一部分。

eventMappingSetting.Type = 
    "System.Web.Management.WebErrorEvent, System.Web";
eventMappingSetting.Type = _
    "System.Web.Management.WebErrorEvent, System.Web"

備註

使用這個屬性來指定事件的型別。 指定的型別可以是實際的類別類型或事件類別的父類型。 如果它是空字串 (「」「) ,則不會對應任何事件,而且 EventMappingSettings 物件會做為預留位置。

類型參考的格式如下, (括弧中的專案不需要) : 命名空間TypenameAssemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]。 例如「ExampleNameSpace.ExampleType, Example.Assembly, Version=%ASSEMBLY_VERSION%,Culture=neutral, PublicKeyToken=%MICROSOFT_PUBLICKEY%」

適用於

另請參閱