WebScriptEnablingElement.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 で有効にできる動作の WebScriptEnablingBehavior。
例
次の例では、WebScriptEnablingBehavior 型を返します。
using System;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.ServiceModel.Configuration;
class Program
{
static void Main(string[] args)
{
WebScriptEnablingElement wSEB = new WebScriptEnablingElement();
Console.WriteLine("The type is: {0}",wSEB.BehaviorType );
Console.WriteLine("Press <ENTER> to terminate the program.");
Console.ReadLine();
}
}