ContextItem 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ContextItem 類別的新執行個體。
多載
ContextItem(Uri) |
使用指定的名稱 URI,初始化 ContextItem 類別的新執行個體。 |
ContextItem(Uri, String) |
使用指定的名稱 URI 和值,初始化 ContextItem 類別的新執行個體。 |
ContextItem(Uri, String, Uri) |
使用指定的名稱 URI、值和範圍 URI,初始化 ContextItem 類別的新執行個體。 |
ContextItem(Uri)
使用指定的名稱 URI,初始化 ContextItem 類別的新執行個體。
public:
ContextItem(Uri ^ name);
public ContextItem (Uri name);
new System.IdentityModel.Protocols.WSTrust.ContextItem : Uri -> System.IdentityModel.Protocols.WSTrust.ContextItem
Public Sub New (name As Uri)
參數
例外狀況
name
為 null
。
name
不是絕對 URI。
備註
屬性 Value 與 Scope 屬性會在新的實體中設定為 null
。
適用於
ContextItem(Uri, String)
使用指定的名稱 URI 和值,初始化 ContextItem 類別的新執行個體。
public:
ContextItem(Uri ^ name, System::String ^ value);
public ContextItem (Uri name, string value);
new System.IdentityModel.Protocols.WSTrust.ContextItem : Uri * string -> System.IdentityModel.Protocols.WSTrust.ContextItem
Public Sub New (name As Uri, value As String)
參數
- value
- String
內容項目值。 可以是 null
。
例外狀況
name
為 null
。
name
不是絕對 URI。
備註
屬性 Scope 會在新的 實體中設定為 null
。
適用於
ContextItem(Uri, String, Uri)
使用指定的名稱 URI、值和範圍 URI,初始化 ContextItem 類別的新執行個體。
public:
ContextItem(Uri ^ name, System::String ^ value, Uri ^ scope);
public ContextItem (Uri name, string value, Uri scope);
new System.IdentityModel.Protocols.WSTrust.ContextItem : Uri * string * Uri -> System.IdentityModel.Protocols.WSTrust.ContextItem
Public Sub New (name As Uri, value As String, scope As Uri)
參數
- value
- String
內容項目值。 可以是 null
。
- scope
- Uri
內容項目範圍。 可以是 null
。
例外狀況
name
為 null
。