本文整理汇总了C#中CommonEnabledState类的典型用法代码示例。如果您正苦于以下问题:C# CommonEnabledState类的具体用法?C# CommonEnabledState怎么用?C# CommonEnabledState使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CommonEnabledState类属于命名空间,在下文中一共展示了CommonEnabledState类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Begincreate
public System.IAsyncResult Begincreate(long woc_instance,string [] local_ips,CommonEnabledState enabled,string serverssl, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
woc_instance,
local_ips,
enabled,
serverssl}, callback, asyncState);
}
示例2: Begincreate
public System.IAsyncResult Begincreate(string [] peer_names,string [] serverssls,string [] peer_ips,CommonEnabledState [] enabled_states, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
peer_names,
serverssls,
peer_ips,
enabled_states}, callback, asyncState);
}
示例3: Begincreate
public System.IAsyncResult Begincreate(string [] keys,long [] sizes,GlobalLBDNSSECKeyKeyType [] types,GlobalLBDNSSECKeyKeyAlgorithm [] algorithms,CommonEnabledState [] fips, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
keys,
sizes,
types,
algorithms,
fips}, callback, asyncState);
}
示例4: Begincreate
public System.IAsyncResult Begincreate(string [] self_ips,string [] vlan_names,string [] netmasks,long [] unit_ids,CommonEnabledState [] floating_states, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
self_ips,
vlan_names,
netmasks,
unit_ids,
floating_states}, callback, asyncState);
}
示例5: Begincreate
public System.IAsyncResult Begincreate(string [] subnets,NetworkingiSessionAdvertisedRouteV2RouteDestination [] destinations,CommonEnabledState [] states,long [] metrics,string [] labels, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
subnets,
destinations,
states,
metrics,
labels}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:9,代码来源:NetworkingiSessionAdvertisedRouteV2.cs
示例6: Begincreate
public System.IAsyncResult Begincreate(string [] stapling_parameters,CommonEnabledState [] use_proxy_server_states,string [] pools,string [] dns_resolvers,string [] cas, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
stapling_parameters,
use_proxy_server_states,
pools,
dns_resolvers,
cas}, callback, asyncState);
}
示例7: Begincreate
public System.IAsyncResult Begincreate(string [] peers,string [] addresses,CommonEnabledState [] enabled,string [] names,string [] serverssl, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("create", new object[] {
peers,
addresses,
enabled,
names,
serverssl}, callback, asyncState);
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:9,代码来源:NetworkingiSessionRemoteInterfaceV2.cs
示例8: set_ignore_unavailable_authentication_information_state
public void set_ignore_unavailable_authentication_information_state(
string [] config_names,
CommonEnabledState [] states
)
{
this.Invoke("set_ignore_unavailable_authentication_information_state", new object [] {
config_names,
states});
}
示例9: set_warning_state
public void set_warning_state(
string [] config_names,
CommonEnabledState [] states
)
{
this.Invoke("set_warning_state", new object [] {
config_names,
states});
}
示例10: set_check_host_attribute_state
public void set_check_host_attribute_state(
string [] config_names,
CommonEnabledState [] states
)
{
this.Invoke("set_check_host_attribute_state", new object [] {
config_names,
states});
}
示例11: set_check_roles_group_state
public void set_check_roles_group_state(
string [] config_names,
CommonEnabledState [] states
)
{
this.Invoke("set_check_roles_group_state", new object [] {
config_names,
states});
}
示例12: set_strict_responder_certificate_checking_state
public void set_strict_responder_certificate_checking_state(
string [] stapling_parameters,
CommonEnabledState [] states
)
{
this.Invoke("set_strict_responder_certificate_checking_state", new object [] {
stapling_parameters,
states});
}
示例13: set_enabled_state
public void set_enabled_state(
string [] data_centers,
CommonEnabledState [] states
)
{
this.Invoke("set_enabled_state", new object [] {
data_centers,
states});
}
示例14: set_enabled_state
public void set_enabled_state(
CommonTMOSModule [] modules,
CommonEnabledState [] states
)
{
this.Invoke("set_enabled_state", new object [] {
modules,
states});
}
示例15: set_fw_rule_log_state
public void set_fw_rule_log_state(
string [] rules,
CommonEnabledState [] states
)
{
this.Invoke("set_fw_rule_log_state", new object [] {
rules,
states});
}
开发者ID:f5devcentral,项目名称:f5-icontrol-library-dotnet,代码行数:9,代码来源:SecurityFirewallGlobalAdminIPRuleList.cs