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