7 references to IfNoneMatch
System.Data.Services (2)
System\Data\Services\BatchServiceHost.cs (1)
176get { return this.requestHeaders[HttpRequestHeader.IfNoneMatch]; }
System\Data\Services\HttpContextServiceHost.cs (1)
170return this.operationContext.IncomingRequest.Headers[HttpRequestHeader.IfNoneMatch];
System.ServiceModel.Web (5)
System\ServiceModel\Web\IncomingWebRequestContext.cs (3)
66string ifNoneMatchHeader = MessageProperty.Headers[HttpRequestHeader.IfNoneMatch]; 284string entityTagHeader = this.Headers[HttpRequestHeader.IfNoneMatch]; 315headerOfInterest = this.Headers[HttpRequestHeader.IfNoneMatch];
System\ServiceModel\Web\OutgoingWebRequestContext.cs (2)
60get { return this.MessageProperty.Headers[HttpRequestHeader.IfNoneMatch]; } 61set { this.MessageProperty.Headers[HttpRequestHeader.IfNoneMatch] = value; }