Platform SDK: Exchange Server |
Adds a previously created ACE object to the collection.
HRESULT Add( [in] IACE* ACE);
Sub Add( ACE as IACE)
The object is added to the end of the collection. When added, the ACE object's ID property is set to the member's long-term entry identifier and then used as the object's key in the collection. If you plan to access the ACE object in the collection with its ID property, immediately retrieve the new ID value on the object right after adding it to the collection.
ace.id = member.id aces.add ace ' ID is converted on the ace object internally strId = ace.id ' new value that's not equal to member.id above.