1 write to host
System.Data.Services (1)
System\Data\Services\DataServiceHostWrapper.cs (1)
122this.host = host;
23 references to host
System.Data.Services (23)
System\Data\Services\DataServiceHostWrapper.cs (23)
190this.absoluteRequestUri = this.host.AbsoluteRequestUri; 212this.absoluteServiceUri = this.host.AbsoluteServiceUri; 252this.requestHttpMethod = this.host.RequestHttpMethod; 288this.requestStream = this.host.RequestStream; 312IDataServiceHost2 host2 = DataServiceHostWrapper.ValidateAndCast<IDataServiceHost2>(this.host); 331IDataServiceHost2 host2 = DataServiceHostWrapper.ValidateAndCast<IDataServiceHost2>(this.host); 348set { this.host.ResponseCacheControl = value; } 354get { return this.host.ResponseContentType; } 355set { this.host.ResponseContentType = value; } 361get { return this.host.ResponseETag; } 362set { this.host.ResponseETag = value; } 370set { this.host.ResponseLocation = value; } 378get { return this.host.ResponseStatusCode; } 379set { this.host.ResponseStatusCode = value; } 389this.responseStream = this.host.ResponseStream; 403set { this.host.ResponseVersion = value; } 409get { return this.host as HttpContextServiceHost; } 417Debug.Assert(this.host is BatchServiceHost, "We shouldn't be calling this outside of the batching code path."); 418return this.host as BatchServiceHost; 434return this.host.GetQueryStringItem(item); 441this.host.ProcessException(args); 447if (this.host is HttpContextServiceHost) 449((HttpContextServiceHost)this.host).VerifyQueryParameters();