3 instantiations of ComProxy
System.ServiceModel (3)
System\ServiceModel\ComIntegration\ComProxy.cs (2)
28return new ComProxy(inner, disp); 76return new ComProxy(inner, null);
System\ServiceModel\ComIntegration\DispatchProxy.cs (1)
49comProxy = new ComProxy(inner, proxy);
31 references to ComProxy
System.ServiceModel (31)
System\ServiceModel\ComIntegration\ChannelCredentials.cs (3)
29internal static ComProxy Create(IntPtr outer, IProvideChannelBuilderSettings channelBuilderSettings) 37ComProxy proxy = null; 41proxy = ComProxy.Create(outer, ChannelCredentials, ChannelCredentials);
System\ServiceModel\ComIntegration\ChannelOptions.cs (3)
20internal static ComProxy Create(IntPtr outer, IProvideChannelBuilderSettings channelBuilderSettings) 28ComProxy proxy = null; 32proxy = ComProxy.Create(outer, channelOptions, channelOptions);
System\ServiceModel\ComIntegration\ComProxy.cs (2)
15internal static ComProxy Create(IntPtr outer, object obj, IDisposable disp) 69public ComProxy Clone()
System\ServiceModel\ComIntegration\DispatchProxy.cs (2)
40internal static ComProxy Create(IntPtr outer, ContractDescription contract, IProvideChannelBuilderSettings channelBuilderSettings) 44ComProxy comProxy = null;
System\ServiceModel\ComIntegration\IProxyCreator.cs (1)
14ComProxy CreateProxy (IntPtr outer, ref Guid riid);
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
501ComProxy IProxyCreator.CreateProxy(IntPtr outer, ref Guid riid)
System\ServiceModel\ComIntegration\MonikerBuilder.cs (3)
13ComProxy comProxy; 23ComProxy IProxyCreator.CreateProxy(IntPtr outer, ref Guid riid) 38comProxy = ComProxy.Create(outer, moniker, moniker);
System\ServiceModel\ComIntegration\ProxyManager.cs (9)
14Dictionary<Guid, ComProxy> InterfaceIDToComProxy; 20InterfaceIDToComProxy = new Dictionary<Guid, ComProxy>(); 36IEnumerator<KeyValuePair<Guid, ComProxy>> enumeratorInterfaces = InterfaceIDToComProxy.GetEnumerator(); 39KeyValuePair<Guid, ComProxy> current = enumeratorInterfaces.Current; 53ComProxy CreateServiceChannel(IntPtr outerProxy, ref Guid riid) 58ComProxy GenerateIntrinsic(IntPtr outerProxy, ref Guid riid) 77void FindOrCreateProxyInternal(IntPtr outerProxy, ref Guid riid, out ComProxy comProxy) 103ComProxy comProxy = null; 158ComProxy comProxy = null;
System\ServiceModel\ComIntegration\TransactionProxy.cs (3)
16ComProxy comProxy = null; 28ComProxy IProxyCreator.CreateProxy(IntPtr outer, ref Guid riid) 40comProxy = ComProxy.Create(outer, txProxy, null);
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (3)
292ComProxy IProxyCreator.CreateProxy(IntPtr outer, ref Guid riid) 307ComProxy comProxy = null; 312comProxy = ComProxy.Create(outer, tearoffProxy.GetTransparentProxy(), tearoffProxy);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
341ComProxy IProxyCreator.CreateProxy(IntPtr outer, ref Guid riid)