2 types derived from DispatchProxy
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
18public class ServiceChannelProxy : DispatchProxy, ICommunicationObject, IChannel, IClientChannel, IOutputChannel, IRequestChannel, IServiceChannel, IDuplexContextChannel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
18public class ServiceChannelProxy : DispatchProxy, ICommunicationObject, IChannel, IClientChannel, IOutputChannel, IRequestChannel, IServiceChannel, IDuplexContextChannel, IAsyncDisposable
8 references to DispatchProxy
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
31TChannel proxy = DispatchProxy.Create<TChannel, ServiceChannelProxy>();
netstandard (1)
netstandard.cs (1)
1394[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Reflection.DispatchProxy))]
System.Reflection.DispatchProxy (5)
System\Reflection\DispatchProxy.cs (4)
14/// Initializes a new instance of the <see cref="DispatchProxy"/> class. 41where TProxy : DispatchProxy 57/// <para><paramref name="proxyType"/> is sealed or abstract, or does not inherit from the <see cref="System.Reflection.DispatchProxy"/> type or does not have a parameterless constructor.</para> 65if (!proxyType.IsAssignableTo(typeof(DispatchProxy)))
System\Reflection\DispatchProxyGenerator.cs (1)
51private static readonly MethodInfo s_dispatchProxyInvokeMethod = typeof(DispatchProxy).GetMethod("Invoke", BindingFlags.NonPublic | BindingFlags.Instance)!;
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
31TChannel proxy = DispatchProxy.Create<TChannel, ServiceChannelProxy>();