9 references to HelpEnabled
System.ServiceModel.Web (9)
System\ServiceModel\Configuration\WebHttpElement.cs (4)
20
[ConfigurationProperty(WebConfigurationStrings.
HelpEnabled
)]
23
get { return (bool)base[WebConfigurationStrings.
HelpEnabled
]; }
24
set { base[WebConfigurationStrings.
HelpEnabled
] = value; }
64
properties.Add(new ConfigurationProperty(WebConfigurationStrings.
HelpEnabled
, typeof(bool), false, null, null, System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\WebHttpEndpointElement.cs (5)
111
[ConfigurationProperty(WebConfigurationStrings.
HelpEnabled
, DefaultValue = false)]
114
get { return (bool)base[WebConfigurationStrings.
HelpEnabled
]; }
115
set { base[WebConfigurationStrings.
HelpEnabled
] = value; }
163
properties.Add(new ConfigurationProperty(WebConfigurationStrings.
HelpEnabled
, typeof(bool), false, null, null, System.Configuration.ConfigurationPropertyOptions.None));
239
if (IsSet(WebConfigurationStrings.
HelpEnabled
))