RemotingConfiguration.IsRemotelyActivatedClientType Method (Type)
Checks whether the specified object Type is registered as a remotely activated client type.
Namespace: System.Runtime.Remoting
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( typeof(MyServerImpl)); Console.WriteLine("The Object type is " +myActivatedClientEntry.ObjectType); Console.WriteLine("The Application Url is " +myActivatedClientEntry.ApplicationUrl);
- SecurityPermission
for configuration of the remoting infrastructure. Demand value: SecurityAction.Demand; Permission value: SecurityPermissionFlag.RemotingConfiguration
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.