103 references to Channel
System.ServiceModel (1)
System\ServiceModel\ClientBase.cs (1)
470return (IClientChannel)Channel;
System.ServiceModel.Activities (39)
System\ServiceModel\Activities\WorkflowControlClient.cs (18)
127base.Channel.Abandon(instanceId, reason); 167base.Channel.TransactedCancel(instanceId); 171base.Channel.Cancel((instanceId)); 200base.Channel.TransactedRun((instanceId)); 204base.Channel.Run((instanceId)); 237base.Channel.TransactedSuspend(instanceId, reason); 241base.Channel.Suspend(instanceId, reason); 279base.Channel.TransactedUnsuspend(instanceId); 283base.Channel.Unsuspend(instanceId); 316base.Channel.TransactedTerminate(instanceId, reason); 320base.Channel.Terminate(instanceId, reason); 360return base.Channel.BeginAbandon(instanceId, reason, callback, state); 365base.Channel.EndAbandon(result); 371return new CancelAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, callback, state); 383return new RunAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, callback, state); 401return new SuspendAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, reason, callback, state); 413return new UnsuspendAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, callback, state); 431return new TerminateAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, reason, callback, state);
System\ServiceModel\Activities\WorkflowUpdateableControlClient.cs (21)
133base.Channel.Abandon(instanceId, reason); 173base.Channel.TransactedCancel(instanceId); 177base.Channel.Cancel((instanceId)); 206base.Channel.TransactedRun((instanceId)); 210base.Channel.Run((instanceId)); 243base.Channel.TransactedSuspend(instanceId, reason); 247base.Channel.Suspend(instanceId, reason); 285base.Channel.TransactedUnsuspend(instanceId); 289base.Channel.Unsuspend(instanceId); 322base.Channel.TransactedTerminate(instanceId, reason); 326base.Channel.Terminate(instanceId, reason); 363base.Channel.TransactedUpdate(instanceId, updatedDefinitionIdentity); 367base.Channel.Update(instanceId, updatedDefinitionIdentity); 399return base.Channel.BeginAbandon(instanceId, reason, callback, state); 404base.Channel.EndAbandon(result); 410return new CancelAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, callback, state); 422return new RunAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, callback, state); 440return new SuspendAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, reason, callback, state); 452return new UnsuspendAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, callback, state); 470return new TerminateAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, reason, callback, state); 482return new UpdateAsyncResult(base.Channel, this.IsTransactedInvoke, instanceId, updatedDefinitionIdentity, callback, state);
System.ServiceModel.Discovery (54)
System\ServiceModel\Discovery\Version11\AnnouncementInnerClient11.cs (8)
105base.Channel.HelloOperation(message); 111base.Channel.ByeOperation(message); 117return base.Channel.BeginHelloOperation(message, callback, state); 122base.Channel.EndHelloOperation(result); 128return base.Channel.BeginByeOperation(message, callback, state); 133base.Channel.EndByeOperation(result); 186return base.Channel.BeginHelloOperation(message, callback, state); 191return base.Channel.BeginByeOperation(message, callback, state);
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientAdhoc11.cs (6)
210base.Channel.ProbeOperation(request); 215base.Channel.ResolveOperation(request); 220return base.Channel.BeginProbeOperation(request, callback, state); 225return base.Channel.BeginResolveOperation(request, callback, state); 230base.Channel.EndProbeOperation(result); 235base.Channel.EndResolveOperation(result);
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientManaged11.cs (6)
76return base.Channel.BeginProbeOperation(request, callback, state); 84return base.Channel.BeginResolveOperation(request, callback, state); 89ProbeMatchesMessage11 response = base.Channel.EndProbeOperation(result); 107ResolveMatchesMessage11 response = base.Channel.EndResolveOperation(result); 127ProbeMatchesMessage11 response = base.Channel.ProbeOperation(request); 147ResolveMatchesMessage11 response = base.Channel.ResolveOperation(request);
System\ServiceModel\Discovery\VersionApril2005\AnnouncementInnerClientApril2005.cs (8)
106base.Channel.HelloOperation(message); 112base.Channel.ByeOperation(message); 118return base.Channel.BeginHelloOperation(message, callback, state); 123return base.Channel.BeginHelloOperation(message, callback, state); 128base.Channel.EndHelloOperation(result); 134return base.Channel.BeginByeOperation(message, callback, state); 139return base.Channel.BeginByeOperation(message, callback, state); 144base.Channel.EndByeOperation(result);
System\ServiceModel\Discovery\VersionApril2005\DiscoveryInnerClientApril2005.cs (6)
190base.Channel.ProbeOperation(request); 195base.Channel.ResolveOperation(request); 200return base.Channel.BeginProbeOperation(request, callback, state); 205return base.Channel.BeginResolveOperation(request, callback, state); 210base.Channel.EndProbeOperation(result); 215base.Channel.EndResolveOperation(result);
System\ServiceModel\Discovery\VersionCD1\AnnouncementInnerClientCD1.cs (8)
105base.Channel.HelloOperation(message); 111base.Channel.ByeOperation(message); 117return base.Channel.BeginHelloOperation(message, callback, state); 122base.Channel.EndHelloOperation(result); 128return base.Channel.BeginByeOperation(message, callback, state); 133base.Channel.EndByeOperation(result); 186return base.Channel.BeginHelloOperation(message, callback, state); 191return base.Channel.BeginByeOperation(message, callback, state);
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientAdhocCD1.cs (6)
208base.Channel.ProbeOperation(request); 213base.Channel.ResolveOperation(request); 218return base.Channel.BeginProbeOperation(request, callback, state); 223return base.Channel.BeginResolveOperation(request, callback, state); 228base.Channel.EndProbeOperation(result); 233base.Channel.EndResolveOperation(result);
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientManagedCD1.cs (6)
76return base.Channel.BeginProbeOperation(request, callback, state); 84return base.Channel.BeginResolveOperation(request, callback, state); 89ProbeMatchesMessageCD1 response = base.Channel.EndProbeOperation(result); 107ResolveMatchesMessageCD1 response = base.Channel.EndResolveOperation(result); 127ProbeMatchesMessageCD1 response = base.Channel.ProbeOperation(request); 147ResolveMatchesMessageCD1 response = base.Channel.ResolveOperation(request);
System.ServiceModel.Routing (8)
System\ServiceModel\Routing\ClientFactory.cs (8)
329return this.Channel.BeginProcessMessage(message, callback, state); 334this.Channel.EndProcessMessage(result); 348return this.Channel.BeginProcessMessage(message, callback, state); 353this.Channel.EndProcessMessage(result); 367return this.Channel.BeginProcessMessage(message, callback, state); 372this.Channel.EndProcessMessage(result); 475return this.Channel.BeginProcessRequest(message, callback, state); 480return this.Channel.EndProcessRequest(result);
System.WorkflowServices (1)
System\ServiceModel\Activities\ExternalDataExchangeClient.cs (1)
28base.Channel.RaiseEvent(eventArgs, queueName, message);