RemotingServices::Connect Method (Type, String, Object)
Creates a proxy for a well-known object, given the Type, URL, and channel-specific data.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)] public: static Object^ Connect( Type^ classToProxy, String^ url, Object^ data )
Parameters
- classToProxy
- Type: System::Type
The Type of the well-known object to which you want to connect.
- url
- Type: System::String
The URL of the well-known object.
- data
- Type: System::Object
Channel specific data. Can be nullptr.
Return Value
Type: System::ObjectA proxy that points to an endpoint that is served by the requested well-known object.
| Exception | Condition |
|---|---|
| SecurityException | The immediate caller does not have permission to configure remoting types and channels. |
The returned proxy object points to an endpoint served by the specified well-known object. No messages are sent over the network until a method is called on the proxy.
The data object is used to communicate information to the channel, and is passed to the IChannelSender::CreateMessageSink method.
- SecurityPermission
for configuration of the remoting infrastructure. Demand value: SecurityAction::LinkDemand; Permission value: SecurityPermissionFlag::RemotingConfiguration
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.