IWsEndUserSetEnqueueRemoveSharedStorage Method |
Namespace: Aruba.Cloud.WsEndUser
[OperationContractAttribute] WsResult SetEnqueueRemoveSharedStorage( EnqueueRemoveSharedStorageRequest operationRequest )
/// IWsEndUser.SetEnqueueRemoveSharedStorage Method (c# .NET) public static string SetEnqueueRemoveSharedStorage(WsEndUserClient client, int storageId) { //specify the account login details client.ClientCredentials.UserName.UserName = "ARU-0000"; client.ClientCredentials.UserName.Password = "0123456789"; StringBuilder stringBuilder = new StringBuilder(); try { // create the object EnqueueRemoveSharedStorageRequest for the request // with data to process EnqueueRemoveSharedStorageRequest request = new EnqueueRemoveSharedStorageRequest(); request.SharedStorageID = storageId; // call method SetAddServerScheduledOperation // obtaining a WsResult item WsResult result = client.SetEnqueueRemoveSharedStorage(request); //if the call is Success print history values if (result.Success) { // get Value returned from server stringBuilder.Append(" Operation successfully. Result Code : "); stringBuilder.Append(result.ResultCode); } else { throw new ApplicationException(result.ResultMessage); } } catch (Exception ex) { // re-run the error throw new ApplicationException(ex.Message); } return stringBuilder.ToString(); }