WebHttpElement.BehaviorType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取此配置元素启用的行为的类型。
public:
virtual property Type ^ BehaviorType { Type ^ get(); };
public override Type BehaviorType { get; }
member this.BehaviorType : Type
Public Overrides ReadOnly Property BehaviorType As Type
属性值
使用此配置元素启用的行为的 Type:WebHttpBehavior。
注解
此示例返回类型 WebHttpElement。
using System;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.ServiceModel.Configuration;
class Program
{
static void Main(string[] args)
{
WebHttpElement webHttpElement = new WebHttpElement();
Console.WriteLine("The type is: {0}", webHttpElement.BehaviorType);
Console.WriteLine("Press <ENTER> to terminate the program.");
Console.ReadLine();
}
}