EventMappingSettings.Type 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置自定义事件类型。
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 充当占位符。
类型引用的格式如下, () 不需要方括号中的项: 命名空间。Typename, Assemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]。 例如“ExampleNameSpace.ExampleType, Example.Assembly, Version=%ASSEMBLY_VERSION%,Culture=neutral, PublicKeyToken=%MICROSOFT_PUBLICKEY%”