ACAccountStoreRemoveCompletionHandler Delegate
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.
A handler to be run when an attempt is made to remove an account from the store.
public delegate void ACAccountStoreRemoveCompletionHandler(bool success, NSError error);
type ACAccountStoreRemoveCompletionHandler = delegate of bool * NSError -> unit
Parameters
- success
- Boolean
true
if the account was removed. Otherwise, false
.
- error
- NSError
The error that was encountered, or null
if no error was encountered.