共用方式為


SecurityElement.Equal(SecurityElement) 方法

定義

比較兩個 XML 項目物件是否相等。

public:
 bool Equal(System::Security::SecurityElement ^ other);
public bool Equal (System.Security.SecurityElement? other);
public bool Equal (System.Security.SecurityElement other);
member this.Equal : System.Security.SecurityElement -> bool
Public Function Equal (other As SecurityElement) As Boolean

參數

other
SecurityElement

要與目前 XML 項目物件比較的 XML 項目物件。

傳回

如果標記、屬性名稱與數值、子項目和目前 XML 項目中的欄位與 other 參數中的對應部分相同,則為 true,否則為 false

範例

下列程式代碼示範如何使用 方法來比較兩個 Equal XML 元素。 此程式代碼範例是針對 類別提供的較大範例的 SecurityElement 一部分。

if ( xmlElement->Equal( localXmlElement ) )
if (xmlElement.Equal(localXmlElement))
If xmlElement.Equal(localXmlElement) Then

備註

如果有子元素,比較會以遞歸方式延伸至它們。

不支持比較相同字元的不同 XML 表示法。

適用於