/// <summary>Snippet for DisableService</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void DisableServiceRequestObject() { // Create client ServiceManagerClient serviceManagerClient = ServiceManagerClient.Create(); // Initialize request argument(s) DisableServiceRequest request = new DisableServiceRequest { ServiceName = "", ConsumerId = "", }; // Make the request #pragma warning disable CS0612 Operation <DisableServiceResponse, OperationMetadata> response = serviceManagerClient.DisableService(request); #pragma warning restore CS0612 // Poll until the returned long-running operation is complete Operation <DisableServiceResponse, OperationMetadata> completedResponse = response.PollUntilCompleted(); // Retrieve the operation result DisableServiceResponse result = completedResponse.Result; // Or get the name of the operation string operationName = response.Name; // This name can be stored, then the long-running operation retrieved later by name #pragma warning disable CS0612 Operation <DisableServiceResponse, OperationMetadata> retrievedResponse = serviceManagerClient.PollOnceDisableService(operationName); #pragma warning restore CS0612 // Check if the retrieved long-running operation has completed if (retrievedResponse.IsCompleted) { // If it has completed, then access the result DisableServiceResponse retrievedResult = retrievedResponse.Result; } }