次の方法で共有


Connection.Deactivated プロパティ

定義

接続が非アクティブ化されているかどうかを示す値を取得します。

public:
 property bool Deactivated { bool get(); };
public bool Deactivated { get; }
member this.Deactivated : bool
Public ReadOnly Property Deactivated As Boolean

プロパティ値

true 接続が非アクティブ化されている場合。それ以外の場合は false

public string DeactivatedStr(IServiceProvider sp) {

    Connection con = (Connection)sp.GetService(typeof(Connection));
    return con.Deactivated.ToString();
}

適用対象