ApplicationTrustCollection.Add(ApplicationTrust) Method

Definition

Adds an element to the collection.

public:
 int Add(System::Security::Policy::ApplicationTrust ^ trust);
public int Add (System.Security.Policy.ApplicationTrust trust);
[System.Security.SecurityCritical]
public int Add (System.Security.Policy.ApplicationTrust trust);
member this.Add : System.Security.Policy.ApplicationTrust -> int
[<System.Security.SecurityCritical>]
member this.Add : System.Security.Policy.ApplicationTrust -> int
Public Function Add (trust As ApplicationTrust) As Integer

Parameters

trust
ApplicationTrust

The ApplicationTrust object to add.

Returns

The index at which the new element was inserted.

Attributes

Exceptions

trust is null.

The ApplicationIdentity property of the ApplicationTrust specified in trust is null.

Remarks

The ApplicationTrust object is added to the end of the collection. To remove an application trust that you previously added, use the Remove method.

Applies to