9 references to DefaultOutgoingResponseFormat
System.ServiceModel.Web (9)
System\ServiceModel\Configuration\WebHttpElement.cs (4)
35
[ConfigurationProperty(WebConfigurationStrings.
DefaultOutgoingResponseFormat
)]
39
get { return (WebMessageFormat)base[WebConfigurationStrings.
DefaultOutgoingResponseFormat
]; }
40
set { base[WebConfigurationStrings.
DefaultOutgoingResponseFormat
] = value; }
66
properties.Add(new ConfigurationProperty(WebConfigurationStrings.
DefaultOutgoingResponseFormat
, typeof(System.ServiceModel.Web.WebMessageFormat), System.ServiceModel.Web.WebMessageFormat.Xml, null, new System.ServiceModel.Configuration.InternalEnumValidator(typeof(System.ServiceModel.Web.WebMessageFormatHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\WebHttpEndpointElement.cs (5)
125
[ConfigurationProperty(WebConfigurationStrings.
DefaultOutgoingResponseFormat
, DefaultValue = WebMessageFormat.Xml)]
129
get { return (WebMessageFormat)base[WebConfigurationStrings.
DefaultOutgoingResponseFormat
]; }
130
set { base[WebConfigurationStrings.
DefaultOutgoingResponseFormat
] = value; }
164
properties.Add(new ConfigurationProperty(WebConfigurationStrings.
DefaultOutgoingResponseFormat
, typeof(System.ServiceModel.Web.WebMessageFormat), System.ServiceModel.Web.WebMessageFormat.Xml, null, new System.ServiceModel.Configuration.InternalEnumValidator(typeof(System.ServiceModel.Web.WebMessageFormatHelper)), System.Configuration.ConfigurationPropertyOptions.None));
243
if (IsSet(WebConfigurationStrings.
DefaultOutgoingResponseFormat
))