mscorlib(4.0.0.0) API with additions
__TransparentProxy.cs
1 using System.Security;
2 
4 {
5  internal sealed class __TransparentProxy
6  {
7  [SecurityCritical]
8  private RealProxy _rp;
9 
10  private object _stubData;
11 
12  private IntPtr _pMT;
13 
14  private IntPtr _pInterfaceMT;
15 
16  private IntPtr _stub;
17 
18  private __TransparentProxy()
19  {
20  throw new NotSupportedException(Environment.GetResourceString("NotSupported_Constructor"));
21  }
22  }
23 }
Provides base functionality for proxies.
Definition: RealProxy.cs:22
Definition: __Canon.cs:3
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
A platform-specific type that is used to represent a pointer or a handle.
Definition: IntPtr.cs:14
The exception that is thrown when an invoked method is not supported, or when there is an attempt to ...