11 references to Location
System (4)
net\System\Net\HttpListenerResponse.cs (4)
106return Headers[HttpResponseHeader.Location]; 113Headers.Remove(HttpResponseHeader.Location); 117Headers.Set(HttpResponseHeader.Location, value); 275Headers.SetInternal(HttpResponseHeader.Location, url);
System.Data.Services (4)
System\Data\Services\BatchServiceHost.cs (2)
215get { return this.responseHeaders[HttpResponseHeader.Location]; } 216set { this.responseHeaders[HttpResponseHeader.Location] = value; }
System\Data\Services\HttpContextServiceHost.cs (2)
244get { return this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Location]; } 245set { this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Location] = value; }
System.ServiceModel.Web (3)
System\ServiceModel\Web\IncomingWebResponseContext.cs (1)
37{ get { return EnsureMessageProperty().Headers[HttpResponseHeader.Location]; } }
System\ServiceModel\Web\OutgoingWebResponseContext.cs (2)
81get { return this.MessageProperty.Headers[HttpResponseHeader.Location]; } 82set { this.MessageProperty.Headers[HttpResponseHeader.Location] = value; }