RealProxy.CreateObjRef-Methode
Erstellt ein ObjRef für den angegebenen Objekttyp und registriert dieses bei der Remoteinfrastruktur als vom Client aktiviertes Objekt.
Namespace: System.Runtime.Remoting.Proxies
Assembly: mscorlib (in mscorlib.dll)
'Declaration
Public Overridable Function CreateObjRef ( _
requestedType As Type _
) As ObjRef
'Usage
Dim instance As RealProxy
Dim requestedType As Type
Dim returnValue As ObjRef
returnValue = instance.CreateObjRef(requestedType)
public virtual ObjRef CreateObjRef (
Type requestedType
)
public:
virtual ObjRef^ CreateObjRef (
Type^ requestedType
)
public ObjRef CreateObjRef (
Type requestedType
)
public function CreateObjRef (
requestedType : Type
) : ObjRef
- requestedType
Der Objekttyp, für den ein ObjRef erstellt wird.
Eine neue Instanz eines für den angegebenen Typ erstellten ObjRef.
Public Overrides Function CreateObjRef(ServerType As Type) As ObjRef
Console.WriteLine("CreateObjRef Method Called ...")
Dim myObjRef As New CustomObjRef(myMarshalByRefObject, ServerType)
myObjRef.URI = myUri
Return myObjRef
End Function 'CreateObjRef
public override ObjRef CreateObjRef(Type ServerType)
{
Console.WriteLine ("CreateObjRef Method Called ...");
CustomObjRef myObjRef = new CustomObjRef(myMarshalByRefObject,ServerType);
myObjRef.URI = myUri ;
return myObjRef;
}
virtual ObjRef^ CreateObjRef( Type^ ServerType ) override
{
Console::WriteLine( "CreateObjRef Method Called ..." );
CustomObjRef ^ myObjRef = gcnew CustomObjRef( myMarshalByRefObject,ServerType );
myObjRef->URI = myUri;
return myObjRef;
}
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Unterstützt in: 2.0, 1.1, 1.0
RealProxy-Klasse
RealProxy-Member
System.Runtime.Remoting.Proxies-Namespace
RemotingConfiguration-Klasse