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