ApplicationTrustEnumerator.Current Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the current ApplicationTrust object in the ApplicationTrustCollection collection.
public:
property System::Security::Policy::ApplicationTrust ^ Current { System::Security::Policy::ApplicationTrust ^ get(); };
public System.Security.Policy.ApplicationTrust Current { get; }
member this.Current : System.Security.Policy.ApplicationTrust
Public ReadOnly Property Current As ApplicationTrust
Property Value
The current ApplicationTrust in the ApplicationTrustCollection.
Remarks
When the enumerator is created, it does not point to an object, so the Current property is not valid and will throw an exception if it is accessed. You must first call the MoveNext method to position the cursor at the first object in the collection.
Multiple calls to Current with no intervening calls to MoveNext will return the same ApplicationTrust object.