This documentation is archived and is not being maintained.
RemotingConfiguration::IsRemotelyActivatedClientType Method (Type)
Visual Studio 2010
Checks whether the specified object Type is registered as a remotely activated client type.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::RemotingConfiguration)] public: static ActivatedClientTypeEntry^ IsRemotelyActivatedClientType( Type^ svrType )
Parameters
- svrType
- Type: System::Type
The object type to check.
Return Value
Type: System.Runtime.Remoting::ActivatedClientTypeEntryThe ActivatedClientTypeEntry that corresponds to the specified object type.
| Exception | Condition |
|---|---|
| SecurityException | At least one of the callers higher in the callstack does not have permission to configure remoting types and channels. |
// Check whether the 'MyServerImpl' type is registered as
// a remotely activated client type.
ActivatedClientTypeEntry^ myActivatedClientEntry = RemotingConfiguration::IsRemotelyActivatedClientType( MyServerImpl::typeid);
Console::WriteLine( "The Object type is {0}", myActivatedClientEntry->ObjectType );
Console::WriteLine( "The Application Url is {0}", myActivatedClientEntry->ApplicationUrl );
- SecurityPermission
for configuration of the remoting infrastructure. Demand value: SecurityAction::Demand; 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.
Show: