__TransparentProxy.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Runtime / Remoting / __TransparentProxy.cs / 1 / __TransparentProxy.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** File:    __TransparentProxy.cs 
**
** 
** Purpose: Defines Transparent proxy
**
**
===========================================================*/ 
namespace System.Runtime.Remoting.Proxies {
    using System.Runtime.Remoting; 
    // Transparent proxy and Real proxy are vital pieces of the 
    // remoting data structures. Transparent proxy magically
    // creates a message that represents a call on it and delegates 
    // to the Real proxy to do the real remoting work.
   using System;
    internal sealed class __TransparentProxy {
        // Created inside EE 
        private __TransparentProxy() {
           throw new NotSupportedException(Environment.GetResourceString(ResId.NotSupported_Constructor)); 
        } 

        // Private members called by VM 
#pragma warning disable 169
        private RealProxy _rp;          // Reference to the real proxy
        private Object    _stubData;    // Data used by stubs to decide whether to short circuit calls or not
        private IntPtr _pMT;            // Method table of the class this proxy represents 
        private IntPtr _pInterfaceMT;   // Cached interface method table
        private IntPtr _stub;           // Unmanaged code that decides whether to short circuit calls or not 
#pragma warning restore 169 

    } 

}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK