VaultFileSize.Security.SecurityService.OnSignOutOperationCompleted C# (CSharp) Method

OnSignOutOperationCompleted() private method

private OnSignOutOperationCompleted ( object arg ) : void
arg object
return void
        private void OnSignOutOperationCompleted(object arg) {
            if ((this.SignOutCompleted != null)) {
                System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                this.SignOutCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }