Package.RelationshipExists(String) Method

Definition

Indicates whether a package-level relationship with a given ID is contained in the package.

public:
 bool RelationshipExists(System::String ^ id);
public bool RelationshipExists (string id);
member this.RelationshipExists : string -> bool
Public Function RelationshipExists (id As String) As Boolean

Parameters

id
String

The Id of the relationship to check for.

Returns

true if a package-level relationship with the specified id is in the package; otherwise, false.

Exceptions

id is null.

id is not a valid XML identifier.

The package is not open (Dispose(Boolean) or Close() has been called).

The package is write-only.

Remarks

For additional information, see the Open Packaging Conventions (OPC) specification available for download at https://www.ecma-international.org/publications-and-standards/standards/ecma-376/.

Applies to

See also