9 references to Headers
System.Data.Services (8)
System\Data\Services\HttpContextServiceHost.cs (8)
223get { return this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.CacheControl]; } 224set { this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.CacheControl] = value; } 244get { return this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Location]; } 245set { this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Location] = value; } 290get { return this.operationContext.OutgoingResponse.Headers[XmlConstants.HttpDataServiceVersion]; } 291set { this.operationContext.OutgoingResponse.Headers[XmlConstants.HttpDataServiceVersion] = value; } 361get { return this.operationContext.OutgoingResponse.Headers; } 444this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Allow] = args.ResponseAllowHeader;
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\HttpUnhandledOperationInvoker.cs (1)
82WebOperationContext.Current.OutgoingResponse.Headers[HttpResponseHeader.Allow] = allowedMethodsData.AllowHeader;