9 references to AutomaticFormatSelectionEnabled
System.ServiceModel.Web (9)
System\ServiceModel\Configuration\WebHttpElement.cs (4)
43
[ConfigurationProperty(WebConfigurationStrings.
AutomaticFormatSelectionEnabled
)]
46
get { return (bool)base[WebConfigurationStrings.
AutomaticFormatSelectionEnabled
]; }
47
set { base[WebConfigurationStrings.
AutomaticFormatSelectionEnabled
] = value; }
67
properties.Add(new ConfigurationProperty(WebConfigurationStrings.
AutomaticFormatSelectionEnabled
, typeof(bool), false, null, null, System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\WebHttpEndpointElement.cs (5)
133
[ConfigurationProperty(WebConfigurationStrings.
AutomaticFormatSelectionEnabled
, DefaultValue = false)]
136
get { return (bool)base[WebConfigurationStrings.
AutomaticFormatSelectionEnabled
]; }
137
set { base[WebConfigurationStrings.
AutomaticFormatSelectionEnabled
] = value; }
165
properties.Add(new ConfigurationProperty(WebConfigurationStrings.
AutomaticFormatSelectionEnabled
, typeof(bool), false, null, null, System.Configuration.ConfigurationPropertyOptions.None));
247
if (IsSet(WebConfigurationStrings.
AutomaticFormatSelectionEnabled
))