13 references to State
System.Data.Services (13)
System\Data\Services\BatchServiceHost.cs (1)
89
this.requestHttpMethod = GetHttpMethodName(batchStream.
State
);
System\Data\Services\DataService.cs (12)
2362
while (!this.batchLimitExceeded && this.batchRequestStream.
State
!= BatchStreamState.EndBatch)
2387
switch (this.batchRequestStream.
State
)
2499
if (this.batchRequestStream.
State
== BatchStreamState.Post)
2512
else if (this.batchRequestStream.
State
== BatchStreamState.Put)
2526
Debug.Assert(this.batchRequestStream.
State
== BatchStreamState.EndBatch, "expecting end batch state");
2544
if (this.batchRequestStream.
State
== BatchStreamState.EndChangeSet)
2548
else if (this.batchRequestStream.
State
== BatchStreamState.Post ||
2549
this.batchRequestStream.
State
== BatchStreamState.Put ||
2550
this.batchRequestStream.
State
== BatchStreamState.Delete ||
2551
this.batchRequestStream.
State
== BatchStreamState.Merge)
2573
if (this.batchRequestStream.
State
== BatchStreamState.EndChangeSet)
2723
Debug.Assert(this.batchRequestStream.
State
== BatchStreamState.Put, "This method must be called only for PUT requests");