共用方式為


AsnWriter.EncodedValueEquals 方法

定義

多載

EncodedValueEquals(AsnWriter)

判斷 Encode() 是否會產生與 other 相同的輸出。

EncodedValueEquals(ReadOnlySpan<Byte>)

判斷 Encode() 是否會產生與 other 相同的輸出。

EncodedValueEquals(AsnWriter)

來源:
AsnWriter.cs
來源:
AsnWriter.cs
來源:
AsnWriter.cs

判斷 Encode() 是否會產生與 other 相同的輸出。

public:
 bool EncodedValueEquals(System::Formats::Asn1::AsnWriter ^ other);
public bool EncodedValueEquals (System.Formats.Asn1.AsnWriter other);
member this.EncodedValueEquals : System.Formats.Asn1.AsnWriter -> bool
Public Function EncodedValueEquals (other As AsnWriter) As Boolean

參數

other
AsnWriter

要比較編碼值的執行個體。

傳回

如果擱置的編碼資料與 other 相同,則為 true,否則為 false

例外狀況

othernull

適用於

EncodedValueEquals(ReadOnlySpan<Byte>)

來源:
AsnWriter.cs
來源:
AsnWriter.cs
來源:
AsnWriter.cs

判斷 Encode() 是否會產生與 other 相同的輸出。

public:
 bool EncodedValueEquals(ReadOnlySpan<System::Byte> other);
public bool EncodedValueEquals (ReadOnlySpan<byte> other);
member this.EncodedValueEquals : ReadOnlySpan<byte> -> bool
Public Function EncodedValueEquals (other As ReadOnlySpan(Of Byte)) As Boolean

參數

other
ReadOnlySpan<Byte>

要比較的編碼值。

傳回

如果擱置的編碼資料與 other 相同,則為 true,否則為 false

例外狀況

適用於