當前位置: 首頁>>代碼示例>>C#>>正文


C# Common.SimpleServiceManagementAsyncResult類代碼示例

本文整理匯總了C#中Microsoft.WindowsAzure.Management.Test.Utilities.Common.SimpleServiceManagementAsyncResult的典型用法代碼示例。如果您正苦於以下問題:C# SimpleServiceManagementAsyncResult類的具體用法?C# SimpleServiceManagementAsyncResult怎麽用?C# SimpleServiceManagementAsyncResult使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


SimpleServiceManagementAsyncResult類屬於Microsoft.WindowsAzure.Management.Test.Utilities.Common命名空間,在下文中一共展示了SimpleServiceManagementAsyncResult類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: BeginGetMediaServices

 public IAsyncResult BeginGetMediaServices(string subscriptionName, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionName"] = subscriptionName;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Juliako,項目名稱:azure-sdk-tools,代碼行數:8,代碼來源:SimpleMediaServiceManagement.cs

示例2: BeginTestRepositoryHook

 public IAsyncResult BeginTestRepositoryHook(string owner, string repository, string id, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["owner"] = owner;
     result.Values["repository"] = repository;
     result.Values["id"] = id;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:xmbms,項目名稱:azure-sdk-tools,代碼行數:10,代碼來源:SimpleGithubManagement.cs

示例3: BeginGetSites

 public IAsyncResult BeginGetSites(string subscriptionName, string webspaceName, string propertiesToInclude, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionName"] = subscriptionName;
     result.Values["webspaceName"] = webspaceName;
     result.Values["propertiesToInclude"] = propertiesToInclude;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:xmbms,項目名稱:azure-sdk-tools,代碼行數:10,代碼來源:SimpleWebsitesManagement.cs

示例4: BeginUpdateServerFirewallRule

 public IAsyncResult BeginUpdateServerFirewallRule(string subscriptionId, string serverName, string ruleName, SqlDatabaseFirewallRuleInput input, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serverName"] = serverName;
     result.Values["ruleName"] = ruleName;
     result.Values["input"] = input;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:nazang,項目名稱:azure-sdk-tools,代碼行數:11,代碼來源:SimpleSqlDatabaseManagement.cs

示例5: BeginRemoveServer

 public IAsyncResult BeginRemoveServer(string subscriptionId, string serverName, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serverName"] = serverName;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:nazang,項目名稱:azure-sdk-tools,代碼行數:9,代碼來源:SimpleSqlDatabaseManagement.cs

示例6: BeginGetImportExportStatus

 /// <summary>
 /// Begins a mock call to GetImportExportStatus
 /// </summary>
 /// <param name="subscriptionId">The subscription Id to pass through</param>
 /// <param name="serverName">The server name to pass through</param>
 /// <param name="fullyQualifiedServerName">The fully qualified server name to pass through</param>
 /// <param name="userName">The userName to pass through</param>
 /// <param name="password">The password to pass through</param>
 /// <param name="requestId">The requestId to pass through</param>
 /// <param name="callback">The callback to pass through</param>
 /// <param name="state">The state to pass through</param>
 /// <returns>An <see cref="IAsyncResult"/> of the mock request</returns>
 public IAsyncResult BeginGetImportExportStatus(
     string subscriptionId,
     string serverName,
     string fullyQualifiedServerName,
     string userName,
     string password,
     string requestId,
     AsyncCallback callback,
     object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serverName"] = serverName;
     result.Values["fullyQualifiedServerName"] = fullyQualifiedServerName;
     result.Values["userName"] = userName;
     result.Values["password"] = password;
     result.Values["requestId"] = requestId;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:nazang,項目名稱:azure-sdk-tools,代碼行數:33,代碼來源:SimpleSqlDatabaseManagement.cs

示例7: BeginDeploy

 public IAsyncResult BeginDeploy(string commitId, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["commitId"] = commitId;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Viachaslau,項目名稱:azure-sdk-tools,代碼行數:8,代碼來源:SimpleDeploymentServiceManagement.cs

示例8: BeginUpdateHostedService

 public IAsyncResult BeginUpdateHostedService(string subscriptionId, string serviceName, UpdateHostedServiceInput input, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["input"] = input;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Viachaslau,項目名稱:azure-sdk-tools,代碼行數:10,代碼來源:SimpleServiceManagement.cs

示例9: BeginCreateAffinityGroup

 public IAsyncResult BeginCreateAffinityGroup(string subscriptionId, CreateAffinityGroupInput input, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["input"] = input;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Viachaslau,項目名稱:azure-sdk-tools,代碼行數:9,代碼來源:SimpleServiceManagement.cs

示例10: BeginChangeConfiguration

 public IAsyncResult BeginChangeConfiguration(string subscriptionId, string serviceName, string deploymentName, ChangeConfigurationInput input, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["deploymentName"] = deploymentName;
     result.Values["input"] = input;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Viachaslau,項目名稱:azure-sdk-tools,代碼行數:11,代碼來源:SimpleServiceManagement.cs

示例11: BeginAddCertificates

 public IAsyncResult BeginAddCertificates(string subscriptionId, string serviceName, CertificateFile input, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["input"] = input;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Viachaslau,項目名稱:azure-sdk-tools,代碼行數:10,代碼來源:SimpleServiceManagement.cs

示例12: BeginCreateServiceBusNamespace

        public IAsyncResult BeginCreateServiceBusNamespace(string subscriptionId, ServiceBusNamespace namespaceDescription, string name, AsyncCallback callback, object state)
        {
            SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
            result.Values["subscriptionId"] = subscriptionId;
            result.Values["namespaceDescription"] = namespaceDescription;
            result.Values["name"] = name;
            result.Values["callback"] = callback;
            result.Values["state"] = state;

            return result;
        }
開發者ID:bryanhunter,項目名稱:azure-sdk-tools,代碼行數:11,代碼來源:SimpleServiceBusManagement.cs

示例13: BeginIsServiceBusNamespaceAvailable

        public IAsyncResult BeginIsServiceBusNamespaceAvailable(string subscriptionId, string serviceName, AsyncCallback callback, object state)
        {
            SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
            result.Values["subscriptionId"] = subscriptionId;
            result.Values["serviceName"] = serviceName;
            result.Values["callback"] = callback;
            result.Values["state"] = state;

            return result;
        }
開發者ID:bryanhunter,項目名稱:azure-sdk-tools,代碼行數:10,代碼來源:SimpleServiceBusManagement.cs

示例14: BeginCreateRepositoryHook

 public IAsyncResult BeginCreateRepositoryHook(string owner, string repository, GithubRepositoryHook hook, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["owner"] = owner;
     result.Values["repository"] = repository;
     result.Values["hook"] = hook;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:xmbms,項目名稱:azure-sdk-tools,代碼行數:10,代碼來源:SimpleGithubManagement.cs

示例15: BeginReimageDeploymentRoleInstanceBySlot

 public IAsyncResult BeginReimageDeploymentRoleInstanceBySlot(string subscriptionId, string serviceName, string deploymentSlot, string roleInstanceName, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["deploymentSlot"] = deploymentSlot;
     result.Values["roleInstanceName"] = roleInstanceName;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
開發者ID:Viachaslau,項目名稱:azure-sdk-tools,代碼行數:11,代碼來源:SimpleServiceManagement.cs


注:本文中的Microsoft.WindowsAzure.Management.Test.Utilities.Common.SimpleServiceManagementAsyncResult類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。