1 type derived from DispatchProxy
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
18
public class ServiceChannelProxy :
DispatchProxy
, ICommunicationObject, IChannel, IClientChannel, IOutputChannel, IRequestChannel, IServiceChannel, IDuplexContextChannel
6 references to DispatchProxy
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
31
TChannel proxy =
DispatchProxy
.Create<TChannel, ServiceChannelProxy>();
netstandard (1)
netstandard.cs (1)
1394
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Reflection.
DispatchProxy
))]
System.Reflection.DispatchProxy (4)
System\Reflection\DispatchProxy.cs (3)
41
where TProxy :
DispatchProxy
55
/// or <paramref name="proxyType"/> is sealed or abstract or does not inherited from the <see cref="System.Reflection.
DispatchProxy
"/>
63
if (!proxyType.IsAssignableTo(typeof(
DispatchProxy
)))
System\Reflection\DispatchProxyGenerator.cs (1)
51
private static readonly MethodInfo s_dispatchProxyInvokeMethod = typeof(
DispatchProxy
).GetMethod("Invoke", BindingFlags.NonPublic | BindingFlags.Instance)!;