SecurityTokenRequirement.TryGetProperty<TValue>(String, TValue) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前 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) 方法。