This documentation is archived and is not being maintained.
RemotingServices::GetObjectUri Method
Visual Studio 2010
Retrieves the URI for the specified object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System::MarshalByRefObject
The MarshalByRefObject for which a URI is requested.
Return Value
Type: System::StringThe URI of the specified object if it has one, or nullptr if the object has not yet been marshaled.
| Exception | Condition |
|---|---|
| SecurityException | The immediate caller does not have infrastructure permission. |
//GetRealProxy, GetObjectUri, GetEnvoyChainForProxy RealProxy^ proxy = RemotingServices::GetRealProxy( obj ); Console::WriteLine( "Real proxy type: {0}", proxy->GetProxiedType() ); Console::WriteLine( "Object URI: {0}", RemotingServices::GetObjectUri( obj ) ); IMessageSink^ msgSink = RemotingServices::GetEnvoyChainForProxy( obj )->NextSink;
- SecurityPermission
for operating with infrastructure code. Demand value: SecurityAction::LinkDemand; Permission value: SecurityPermissionFlag::Infrastructure
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: