SecurityTokenRequirement.GetProperty<TValue>(String) 方法

定义

获取当前 SecurityTokenRequirement 实例的指定属性。

public:
generic <typename TValue>
 TValue GetProperty(System::String ^ propertyName);
public TValue GetProperty<TValue> (string propertyName);
member this.GetProperty : string -> 'Value
Public Function GetProperty(Of TValue) (propertyName As String) As TValue

类型参数

TValue

要获取的属性的类型。

参数

propertyName
String

要获取的属性的名称。

返回

TValue

要获取的属性的值。

例外

propertyNamenull

注解

GetProperty 方法首先调用 TryGetProperty<TValue>(String, TValue) 方法来确定是否已设置在 propertyName 参数中指定的属性。 然后,GetProperty 方法验证当返回属性值时,该值是否可设置为 TValue 参数中指定的类型。

适用于