次の方法で共有


WebScriptEnablingElement.BehaviorType プロパティ

定義

この構成要素で有効にできる動作の種類を取得します。

public:
 virtual property Type ^ BehaviorType { Type ^ get(); };
public override Type BehaviorType { get; }
member this.BehaviorType : Type
Public Overrides ReadOnly Property BehaviorType As Type

プロパティ値

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();  
        }  
    }  

適用対象