当前位置: 首页>>代码示例>>C#>>正文


C# SimpleServiceManagementAsyncResult类代码示例

本文整理汇总了C#中SimpleServiceManagementAsyncResult的典型用法代码示例。如果您正苦于以下问题:C# SimpleServiceManagementAsyncResult类的具体用法?C# SimpleServiceManagementAsyncResult怎么用?C# SimpleServiceManagementAsyncResult使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SimpleServiceManagementAsyncResult类属于命名空间,在下文中一共展示了SimpleServiceManagementAsyncResult类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: BeginGetOrganizations

 public IAsyncResult BeginGetOrganizations(AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:takekazuomi,项目名称:azure-sdk-tools,代码行数:7,代码来源:SimpleGithubManagement.cs

示例2: 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:EmmaZhu,项目名称:azure-sdk-tools,代码行数:8,代码来源:SimpleDeploymentServiceManagement.cs

示例3: BeginGetDeployments

 public IAsyncResult BeginGetDeployments(int maxItems, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["maxItems"] = maxItems;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:EmmaZhu,项目名称:azure-sdk-tools,代码行数:8,代码来源:SimpleDeploymentServiceManagement.cs

示例4: BeginGetWebSpaces

 public IAsyncResult BeginGetWebSpaces(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:B-Rich,项目名称:azure-sdk-tools,代码行数:8,代码来源:SimpleWebsitesManagement.cs

示例5: 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:B-Rich,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleWebsitesManagement.cs

示例6: 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:B-Rich,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleServiceManagement.cs

示例7: BeginDeleteCertificate

 public IAsyncResult BeginDeleteCertificate(string subscriptionId, string serviceName, string thumbprintAlgorithm, string thumbprintInHex, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["thumbprintalgorithm"] = thumbprintAlgorithm;
     result.Values["thumbprintInHex"] = thumbprintInHex;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:B-Rich,项目名称:azure-sdk-tools,代码行数:11,代码来源:SimpleServiceManagement.cs

示例8: BeginWalkUpgradeDomain

 public IAsyncResult BeginWalkUpgradeDomain(string subscriptionId, string serviceName, string deploymentName, WalkUpgradeDomainInput 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:arri-cc,项目名称:azure-sdk-tools,代码行数:11,代码来源:SimpleServiceManagement.cs

示例9: BeginCreateHostedService

 public IAsyncResult BeginCreateHostedService(string subscriptionId, CreateHostedServiceInput 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:arri-cc,项目名称:azure-sdk-tools,代码行数:9,代码来源:SimpleServiceManagement.cs

示例10: BeginListServiceBusRegions

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

            return result;
        }
开发者ID:OctopusDeploy,项目名称:azure-sdk-tools,代码行数:9,代码来源:SimpleServiceBusManagement.cs

示例11: BeginSetPassword

 public IAsyncResult BeginSetPassword(string subscriptionId, string serverName, XmlElement password, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serverName"] = serverName;
     result.Values["password"] = password;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:huangpf,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleSqlDatabaseManagement.cs

示例12: BeginSwapDeployment

 public IAsyncResult BeginSwapDeployment(string subscriptionId, string serviceName, SwapDeploymentInput 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:arri-cc,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleServiceManagement.cs

示例13: BeginUpdateStorageService

 public IAsyncResult BeginUpdateStorageService(string subscriptionId, string StorageServiceName, UpdateStorageServiceInput updateStorageServiceInput, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["StorageServiceName"] = StorageServiceName;
     result.Values["updateStorageServiceInput"] = updateStorageServiceInput;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:arri-cc,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleServiceManagement.cs

示例14: BeginRegenerateStorageServiceKeys

 public IAsyncResult BeginRegenerateStorageServiceKeys(string subscriptionId, string serviceName, RegenerateKeys regenerateKeys, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["regenerateKeys"] = regenerateKeys;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:arri-cc,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleServiceManagement.cs

示例15: BeginGetHostedServiceWithDetails

 public IAsyncResult BeginGetHostedServiceWithDetails(string subscriptionId, string serviceName, Boolean embedDetail, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["subscriptionId"] = subscriptionId;
     result.Values["serviceName"] = serviceName;
     result.Values["embedDetail"] = embedDetail;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
开发者ID:arri-cc,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleServiceManagement.cs


注:本文中的SimpleServiceManagementAsyncResult类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。