1 write to RequestChannel
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
30RequestChannel = requestChannel ?? throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(requestChannel));
27 references to RequestChannel
System.ServiceModel.Federation (27)
System\ServiceModel\Federation\WSTrustChannel.cs (27)
34MessageVersion = RequestChannel.GetProperty<MessageVersion>(); 38EndpointAddress endpointAddress = RequestChannel.GetProperty<EndpointAddress>(); 153return RequestChannel.GetProperty<T>(); 163add { RequestChannel.Closed += value; } 164remove { RequestChannel.Closed -= value; } 172add { RequestChannel.Closing += value; } 173remove { RequestChannel.Closing -= value; } 181add { RequestChannel.Faulted += value; } 182remove { RequestChannel.Faulted -= value; } 190add { RequestChannel.Opened += value; } 191remove { RequestChannel.Opened -= value; } 199add { RequestChannel.Opening += value; } 200remove { RequestChannel.Opening -= value; } 208RequestChannel.Abort(); 228return RequestChannel.BeginClose(timeout, callback, state); 245return RequestChannel.BeginClose(callback, state); 265return RequestChannel.BeginOpen(timeout, callback, state); 282return RequestChannel.BeginOpen(callback, state); 293RequestChannel.Close(timeout); 301RequestChannel.Close(); 310RequestChannel.EndClose(result); 319RequestChannel.EndOpen(result); 330RequestChannel.Open(timeout); 338RequestChannel.Open(); 346get { return RequestChannel.State; } 361Message response = await Task.Factory.FromAsync(RequestChannel.BeginRequest, RequestChannel.EndRequest, requestMessage, null, TaskCreationOptions.None).ConfigureAwait(false);