本文整理汇总了C#中SimpleServiceManagementAsyncResult类的典型用法代码示例。如果您正苦于以下问题:C# SimpleServiceManagementAsyncResult类的具体用法?C# SimpleServiceManagementAsyncResult怎么用?C# SimpleServiceManagementAsyncResult使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SimpleServiceManagementAsyncResult类属于命名空间,在下文中一共展示了SimpleServiceManagementAsyncResult类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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
示例16: BeginGetAffinityGroup
public IAsyncResult BeginGetAffinityGroup(string subscriptionId, string affinityGroupName, AsyncCallback callback, object state)
{
SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
result.Values["subscriptionId"] = subscriptionId;
result.Values["affinityGroupName"] = affinityGroupName;
result.Values["callback"] = callback;
result.Values["state"] = state;
return result;
}
开发者ID:arri-cc,项目名称:azure-sdk-tools,代码行数:9,代码来源:SimpleServiceManagement.cs
示例17: 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:huangpf,项目名称:azure-sdk-tools,代码行数:11,代码来源:SimpleSqlDatabaseManagement.cs
示例18: BeginGetServerFirewallRules
public IAsyncResult BeginGetServerFirewallRules(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:huangpf,项目名称:azure-sdk-tools,代码行数:9,代码来源:SimpleSqlDatabaseManagement.cs
示例19: BeginGetDeployment
public IAsyncResult BeginGetDeployment(string subscriptionId, string serviceName, string deploymentName, AsyncCallback callback, object state)
{
SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
result.Values["subscriptionId"] = subscriptionId;
result.Values["serviceName"] = serviceName;
result.Values["deploymentName"] = deploymentName;
result.Values["callback"] = callback;
result.Values["state"] = state;
return result;
}
开发者ID:arri-cc,项目名称:azure-sdk-tools,代码行数:10,代码来源:SimpleServiceManagement.cs
示例20: BeginGetRepositoriesFromOrg
public IAsyncResult BeginGetRepositoriesFromOrg(string organization, AsyncCallback callback, object state)
{
SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
result.Values["organization"] = organization;
result.Values["callback"] = callback;
result.Values["state"] = state;
return result;
}
开发者ID:takekazuomi,项目名称:azure-sdk-tools,代码行数:8,代码来源:SimpleGithubManagement.cs
注:本文中的SimpleServiceManagementAsyncResult类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论