Claim.CreateHashClaim(Byte[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立 Claim 物件,這個物件表示指定的雜湊值。
public:
static System::IdentityModel::Claims::Claim ^ CreateHashClaim(cli::array <System::Byte> ^ hash);
public static System.IdentityModel.Claims.Claim CreateHashClaim (byte[] hash);
static member CreateHashClaim : byte[] -> System.IdentityModel.Claims.Claim
Public Shared Function CreateHashClaim (hash As Byte()) As Claim
參數
- hash
- Byte[]
指定雜湊值的位元組值陣列。 此參數不得為 null
。 如果此參數為 null
,這個方法會擲回 ArgumentNullException 例外狀況。
傳回
這個方法建立的 Claim 物件。
例外狀況
hash
參數為 null
。
備註
這個方法所建立的 Claim 物件具有下表所示的屬性值。
屬性 | 值 |
---|---|
ClaimType | Hash |
Resource | hash 參數的值。 |
Right | PossessProperty. |