KeyContainerPermissionAccessEntryCollection.Remove Method
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.
Removes the specified KeyContainerPermissionAccessEntry object from the collection.
public:
void Remove(System::Security::Permissions::KeyContainerPermissionAccessEntry ^ accessEntry);
public void Remove (System.Security.Permissions.KeyContainerPermissionAccessEntry accessEntry);
member this.Remove : System.Security.Permissions.KeyContainerPermissionAccessEntry -> unit
Public Sub Remove (accessEntry As KeyContainerPermissionAccessEntry)
Parameters
- accessEntry
- KeyContainerPermissionAccessEntry
The KeyContainerPermissionAccessEntry object to remove.
Exceptions
accessEntry
is null
.
Remarks
When you remove an item from the collection, the index values change for subsequent items in the collection. All information about the removed item is deleted. Use this method when you want to remove a specific item by specifying the actual item to remove. To remove all items from the list, use the Clear method.