This documentation is archived and is not being maintained.
Type::IsMarshalByRefImpl Method
Visual Studio 2010
Implements the IsMarshalByRef property and determines whether the Type is marshaled by reference.
Assembly: mscorlib (in mscorlib.dll)
The following example determines whether the given type is marshaled by reference and displays the result.
using namespace System; using namespace System::Reflection; public ref class MyTypeDelegatorClass: public TypeDelegator { public: String^ myElementType; private: Type^ myType; public: MyTypeDelegatorClass( Type^ myType ) : TypeDelegator( myType ) { this->myType = myType; } protected: // Override IsMarshalByRefImpl. virtual bool IsMarshalByRefImpl() override { // Determine whether the type is marshalled by reference. if ( myType->IsMarshalByRef ) { myElementType = " marshalled by reference"; return true; } return false; } }; public ref class MyTypeDemoClass{}; // This class is used to demonstrate the IsMarshalByRefImpl method. public ref class MyContextBoundClass: public ContextBoundObject { public: String^ myString; }; int main() { try { MyTypeDelegatorClass^ myType; Console::WriteLine( "Determine whether MyContextBoundClass is marshalled by reference." ); // Determine whether MyContextBoundClass type is marshalled by reference. myType = gcnew MyTypeDelegatorClass( MyContextBoundClass::typeid ); if ( myType->IsMarshalByRef ) { Console::WriteLine( "{0} is marshalled by reference.", MyContextBoundClass::typeid ); } else { Console::WriteLine( "{0} is not marshalled by reference.", MyContextBoundClass::typeid ); } // Determine whether int type is marshalled by reference. myType = gcnew MyTypeDelegatorClass( int::typeid ); Console::WriteLine( "\nDetermine whether int is marshalled by reference." ); if ( myType->IsMarshalByRef ) { Console::WriteLine( "{0} is marshalled by reference.", int::typeid ); } else { Console::WriteLine( "{0} is not marshalled by reference.", int::typeid ); } } catch ( Exception^ e ) { Console::WriteLine( "Exception: {0}", e->Message ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: