IWsMonitoringSetPurchaseMonitoringService Method |
Namespace: Aruba.Cloud.WsMonitoring
[OperationContractAttribute] WsResult<int> SetPurchaseMonitoringService( NewMonitoringServiceEntity newMonitoringServiceEntity )
/// WsMonitoring.SetPurchaseMonitoringService Method (c# .NET) public static string SetPurchaseMonitoringService(WsMonitoringClient client, int monitorMonitoringClassOfServiceID, String monitorName) { //specify the account login details client.ClientCredentials.UserName.UserName = "ARU-0000"; client.ClientCredentials.UserName.Password = "0123456789"; StringBuilder stringBuilder = new StringBuilder(); try { // create the request object NewMonitoringServiceEntity request = new NewMonitoringServiceEntity(); request.MonitoringClassOfServiceID = monitorMonitoringClassOfServiceID; request.Name = monitorName; // call method SetPurchaseMonitoringService // obtaining a WsResultOfint item WsResultOfint result = client.SetPurchaseMonitoringService(request); //if the call is Success print value 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(); }