This documentation is archived and is not being maintained.
Type::IsMarshalByRefImpl Method
Visual Studio 2008
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, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: