BinaryKeyIdentifierClause.Matches 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示此实例的密钥标识符是否与指定的对象相匹配。
重载
Matches(Byte[]) |
返回一个值,该值指示当前实例的二进制数据是否与指定的二进制数据相匹配。 |
Matches(SecurityKeyIdentifierClause) |
返回一个值,该值指示此实例的密钥标识符是否等效于指定的密钥标识符子句。 |
Matches(Byte[], Int32) |
返回一个值,该值指示当前实例的二进制数据是否与指定偏移处的指定二进制数据等效。 |
Matches(Byte[])
- Source:
- BinaryKeyIdentifierClause.cs
- Source:
- BinaryKeyIdentifierClause.cs
- Source:
- BinaryKeyIdentifierClause.cs
返回一个值,该值指示当前实例的二进制数据是否与指定的二进制数据相匹配。
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)
- Source:
- BinaryKeyIdentifierClause.cs
- Source:
- BinaryKeyIdentifierClause.cs
- Source:
- BinaryKeyIdentifierClause.cs
返回一个值,该值指示此实例的密钥标识符是否等效于指定的密钥标识符子句。
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)
- Source:
- BinaryKeyIdentifierClause.cs
- Source:
- BinaryKeyIdentifierClause.cs
- Source:
- BinaryKeyIdentifierClause.cs
返回一个值,该值指示当前实例的二进制数据是否与指定偏移处的指定二进制数据等效。
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
。