11 references to Json
System.Data.Services (11)
System\Data\Services\DataService.cs (1)
1663return ContentFormat.Json;
System\Data\Services\ResponseBodyWriter.cs (4)
142case ContentFormat.Json: 150if (this.responseFormat == ContentFormat.Json) 167if (ContentFormat.Json == this.responseFormat) 217string contentType = (this.responseFormat == ContentFormat.Json) ? XmlConstants.MimeApplicationJson : XmlConstants.MimeApplicationXml;
System\Data\Services\Serializers\Deserializer.cs (2)
158case ContentFormat.Json: 205if (contentFormat == ContentFormat.Json)
System\Data\Services\Serializers\JsonDeserializer.cs (3)
62return ContentFormat.Json; 562SetPropertyValue(resourceProperty, resource, propertyValue, ContentFormat.Json, this.Service); 570SetPropertyValue(resourceProperty, resource, propertyValue, ContentFormat.Json, this.Service);
System\Data\Services\WebUtil.cs (1)
437contentFormat = ContentFormat.Json;