12 references to State
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
964
bool consumed = ((rpc.Reply != null) && (rpc.Reply.
State
!= MessageState.Created));
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\ActivityIdHeader.cs (3)
39
if (message != null && message.
State
!= MessageState.Closed && message.Headers != null)
76
if (message.
State
!= MessageState.Closed && message.Headers != null)
109
if (message.
State
!= MessageState.Closed && message.Headers.MessageVersion.Envelope != EnvelopeVersion.None)
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\EventTraceActivityHelper.cs (1)
39
if (message != null && message.
State
!= MessageState.Closed)
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\TraceUtility.cs (2)
87
(message.
State
!= MessageState.Closed))
184
if (DiagnosticUtility.ShouldUseActivity && message != null && message.
State
!= MessageState.Closed)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (2)
155
rpc.DidDeserializeRequestBody = (rpc.Request.
State
!= MessageState.Created);
338
if (null != rpc.OperationContext.IncomingMessage && MessageState.Closed != rpc.OperationContext.IncomingMessage.
State
)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
776
if ((rpc.FaultInfo.Fault != null) && (rpc.FaultInfo.Fault.
State
!= MessageState.Closed))
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (2)
294
if (_message.
State
== MessageState.Closed)
330
public override bool CanRead { get { return _message.
State
!= MessageState.Closed; } }