BinaryKeyIdentifierClause.Matches 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,這個值會指出這個執行個體的金鑰識別碼是否與指定的物件相符。
多載
Matches(Byte[]) |
傳回值,這個值會指出目前執行個體的二進位資料是否符合指定的二進位資料。 |
Matches(SecurityKeyIdentifierClause) |
傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的金鑰識別碼子句。 |
Matches(Byte[], Int32) |
傳回值,這個值會指出目前執行個體的二進位資料是否相等於具有所指定偏差的已指定二進位資料。 |
Matches(Byte[])
傳回值,這個值會指出目前執行個體的二進位資料是否符合指定的二進位資料。
public:
bool Matches(cli::array <System::Byte> ^ data);
public bool Matches (byte[] data);
override this.Matches : byte[] -> bool
Public Function Matches (data As Byte()) As Boolean
參數
傳回
如果 data
與 GetBuffer() 方法傳回的二進位資料相等,則為 true
,否則為 false
。
適用於
Matches(SecurityKeyIdentifierClause)
傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的金鑰識別碼子句。
public:
override bool Matches(System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ keyIdentifierClause);
public override bool Matches (System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause);
override this.Matches : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
Public Overrides Function Matches (keyIdentifierClause As SecurityKeyIdentifierClause) As Boolean
參數
- keyIdentifierClause
- SecurityKeyIdentifierClause
要相比較的 SecurityKeyIdentifierClause。
傳回
如果 keyIdentifierClause
是 BinaryKeyIdentifierClause 型別,而且 GetBuffer() 方法傳回的二進位資料與 keyIdentifierClause
參數和目前執行個體的二進位資料相同,則為 true
,否則為 false
。
適用於
Matches(Byte[], Int32)
傳回值,這個值會指出目前執行個體的二進位資料是否相等於具有所指定偏差的已指定二進位資料。
public:
bool Matches(cli::array <System::Byte> ^ data, int offset);
public bool Matches (byte[] data, int offset);
override this.Matches : byte[] * int -> bool
Public Function Matches (data As Byte(), offset As Integer) As Boolean
參數
- offset
- Int32
要在上面開始比較的陣列內索引。
傳回
如果在 data
參數中從 offset
參數中指定之索引開始的二進位資料相等於 GetBuffer() 方法所傳回的二進位資料 (從索引零處開始),則為 true
,否則為 false
。