19 references to State
System.ServiceModel (19)
System\ServiceModel\Channels\FramingDecoders.cs (18)
1184State currentState; 1192this.currentState = State.ReadingViaRecord; 1205case State.ReadingViaRecord: 1210currentState = State.ReadingViaString; 1212case State.ReadingViaString: 1215currentState = State.ReadingContentTypeRecord; 1217case State.ReadingContentTypeRecord: 1222currentState = State.ReadingContentTypeByte; 1229currentState = State.ReadingContentTypeString; 1232case State.ReadingContentTypeByte: 1235currentState = State.Start; 1237case State.ReadingContentTypeString: 1241currentState = State.Start; 1245case State.Start: 1265this.currentState = State.ReadingViaRecord; 1268public State CurrentState 1282if (currentState < State.ReadingContentTypeRecord) 1293if (currentState < State.Start)
System\ServiceModel\Channels\MsmqDecodeHelper.cs (1)
101if (decoder.CurrentState == ServerSingletonSizedDecoder.State.Start)