23 references to ReceiveContextState
System.ServiceModel (21)
System\ServiceModel\Channels\ReceiveContext.cs (21)
26this.State = ReceiveContextState.Received; 30public ReceiveContextState State 119this.State = ReceiveContextState.Abandoned; 185this.State = ReceiveContextState.Completed; 231if (this.State == ReceiveContextState.Completed || this.State == ReceiveContextState.Abandoned || this.State == ReceiveContextState.Faulted) 235this.State = ReceiveContextState.Faulted; 302if (this.State == ReceiveContextState.Completing || this.State == ReceiveContextState.Completed) 304this.State = ReceiveContextState.Received; 320if (this.State == ReceiveContextState.Abandoning || this.State == ReceiveContextState.Abandoned) 328this.State = ReceiveContextState.Abandoning; 344this.State = ReceiveContextState.Completing; 356if (State == ReceiveContextState.Faulted) 365if (State != ReceiveContextState.Abandoning) 374if (State != ReceiveContextState.Completing) 383if (State != ReceiveContextState.Received) 489this.ReceiveContext.State = ReceiveContextState.Abandoned; 591this.ReceiveContext.State = ReceiveContextState.Completed;
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\Dispatcher\BufferedReceiveManager.cs (1)
90if (receiveContext.State == ReceiveContextState.Received)
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (1)
746return this.receiveContext != null && this.receiveContext.State != ReceiveContextState.Faulted;