共用方式為


SecurityTokenRequirement.TryGetProperty<TValue>(String, TValue) 方法

定義

取得目前 SecurityTokenRequirement 執行個體的指定屬性。

public:
generic <typename TValue>
 bool TryGetProperty(System::String ^ propertyName, [Runtime::InteropServices::Out] TValue % result);
public bool TryGetProperty<TValue> (string propertyName, out TValue result);
member this.TryGetProperty : string * 'Value -> bool
Public Function TryGetProperty(Of TValue) (propertyName As String, ByRef result As TValue) As Boolean

類型參數

TValue

要在 result 參數中傳回的屬性型別。

參數

propertyName
String

要取得的屬性名稱。

result
TValue

propertyName 屬性中所指定屬性的值。

傳回

如果 true 屬性包含 Properties 屬性中所指定的屬性值,則為 propertyName,否則為 false

例外狀況

雖然有存在 propertyName 參數中所指定名稱的屬性,但是該屬性的型別與 TValue 參數中所指定的型別不同。

備註

為了取得所指定屬性的屬性值,並確認是否能將該屬性值設定為 TValue 參數中所指定的型別,此時會呼叫 GetProperty<TValue>(String) 方法。

適用於