本文整理汇总了C#中iControl.GlobalLBPoolID类的典型用法代码示例。如果您正苦于以下问题:C# GlobalLBPoolID类的具体用法?C# GlobalLBPoolID怎么用?C# GlobalLBPoolID使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GlobalLBPoolID类属于iControl命名空间,在下文中一共展示了GlobalLBPoolID类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: add_member
public void add_member(
GlobalLBPoolID [] pools,
GlobalLBVirtualServerID [] [] members,
long [] [] orders
)
{
this.Invoke("add_member", new object [] {
pools,
members,
orders});
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:11,代码来源:GlobalLBPoolV2.cs
示例2: add_member_dependency
public void add_member_dependency(
GlobalLBPoolID [] pools,
GlobalLBVirtualServerID [] [] members,
GlobalLBVirtualServerID [] [] [] dependencies
)
{
this.Invoke("add_member_dependency", new object [] {
pools,
members,
dependencies});
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:11,代码来源:GlobalLBPoolV2.cs
示例3: add_metadata
public void add_metadata(
GlobalLBPoolID [] pools,
string [] [] names,
string [] [] values
)
{
this.Invoke("add_metadata", new object [] {
pools,
names,
values});
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:11,代码来源:GlobalLBPoolV2.cs
示例4: add_wide_ip_pool
public void add_wide_ip_pool(
GlobalLBWideIPID [] wide_ips,
GlobalLBPoolID [] [] wide_ip_pools,
long [] [] orders,
long [] [] ratios
)
{
this.Invoke("add_wide_ip_pool", new object [] {
wide_ips,
wide_ip_pools,
orders,
ratios});
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:13,代码来源:GlobalLBWideIPV2.cs
示例5: Beginremove_monitor_rule
public System.IAsyncResult Beginremove_monitor_rule(GlobalLBPoolID [] pools, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("remove_monitor_rule", new object[] {
pools}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:5,代码来源:GlobalLBPoolV2.cs
示例6: Beginget_metadata
public System.IAsyncResult Beginget_metadata(GlobalLBPoolID [] pools, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("get_metadata", new object[] {
pools}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:5,代码来源:GlobalLBPoolV2.cs
示例7: Beginset_member_limit
public System.IAsyncResult Beginset_member_limit(GlobalLBPoolID [] pools,GlobalLBVirtualServerID [] [] members,GlobalLBMetricLimit [] [] [] limits, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_member_limit", new object[] {
pools,
members,
limits}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:7,代码来源:GlobalLBPoolV2.cs
示例8: Beginset_qos_coefficient_vs_capacity
public System.IAsyncResult Beginset_qos_coefficient_vs_capacity(GlobalLBPoolID [] pools,long [] values, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_qos_coefficient_vs_capacity", new object[] {
pools,
values}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
示例9: Beginset_ttl
public System.IAsyncResult Beginset_ttl(GlobalLBPoolID [] pools,long [] values, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_ttl", new object[] {
pools,
values}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
示例10: Beginset_non_terminal_member_rdata_weight
public System.IAsyncResult Beginset_non_terminal_member_rdata_weight(GlobalLBPoolID [] pools,string [] [] members,long [] [] weights, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_non_terminal_member_rdata_weight", new object[] {
pools,
members,
weights}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:7,代码来源:GlobalLBPoolV2.cs
示例11: Beginset_preferred_lb_method
public System.IAsyncResult Beginset_preferred_lb_method(GlobalLBPoolID [] pools,GlobalLBLBMethod [] lb_methods, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_preferred_lb_method", new object[] {
pools,
lb_methods}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
示例12: Beginset_member_ratio
public System.IAsyncResult Beginset_member_ratio(GlobalLBPoolID [] pools,GlobalLBVirtualServerID [] [] members,long [] [] ratios, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_member_ratio", new object[] {
pools,
members,
ratios}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:7,代码来源:GlobalLBPoolV2.cs
示例13: Beginset_monitor_rule
public System.IAsyncResult Beginset_monitor_rule(GlobalLBPoolID [] pools,GlobalLBMonitorRule [] rules, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_monitor_rule", new object[] {
pools,
rules}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
示例14: Beginremove_member_dependency
public System.IAsyncResult Beginremove_member_dependency(GlobalLBPoolID [] pools,GlobalLBVirtualServerID [] [] members,GlobalLBVirtualServerID [] [] [] dependencies, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("remove_member_dependency", new object[] {
pools,
members,
dependencies}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:7,代码来源:GlobalLBPoolV2.cs
示例15: Beginget_metadata_description
public System.IAsyncResult Beginget_metadata_description(GlobalLBPoolID [] pools,string [] [] names, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("get_metadata_description", new object[] {
pools,
names}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
示例16: Beginget_qos_coefficient_vs_score
public System.IAsyncResult Beginget_qos_coefficient_vs_score(GlobalLBPoolID [] pools, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("get_qos_coefficient_vs_score", new object[] {
pools}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:5,代码来源:GlobalLBPoolV2.cs
示例17: Beginget_non_terminal_member_rdata_service
public System.IAsyncResult Beginget_non_terminal_member_rdata_service(GlobalLBPoolID [] pools,string [] [] members, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("get_non_terminal_member_rdata_service", new object[] {
pools,
members}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
示例18: Beginget_non_terminal_member
public System.IAsyncResult Beginget_non_terminal_member(GlobalLBPoolID [] pools, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("get_non_terminal_member", new object[] {
pools}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:5,代码来源:GlobalLBPoolV2.cs
示例19: Beginset_metadata_value
public System.IAsyncResult Beginset_metadata_value(GlobalLBPoolID [] pools,string [] [] names,string [] [] values, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("set_metadata_value", new object[] {
pools,
names,
values}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:7,代码来源:GlobalLBPoolV2.cs
示例20: Beginreset_member_statistics
public System.IAsyncResult Beginreset_member_statistics(GlobalLBPoolID [] pools,GlobalLBVirtualServerID [] [] members, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("reset_member_statistics", new object[] {
pools,
members}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:6,代码来源:GlobalLBPoolV2.cs
注:本文中的iControl.GlobalLBPoolID类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论