RemotingConfiguration.IsRemotelyActivatedClientType Method (String, String)
Checks whether the object specified by its type name and assembly name is registered as a remotely activated client type.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.RemotingConfiguration)] public static ActivatedClientTypeEntry IsRemotelyActivatedClientType( string typeName, string assemblyName )
Parameters
- typeName
- Type: System.String
The type name of the object to check.
- assemblyName
- Type: System.String
The assembly name of the object 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. |
Assembly myAssembly = Assembly.GetAssembly(typeof(MyServerImpl));
AssemblyName myName = myAssembly.GetName();
// Check whether the 'MyServerImpl' type is registered as
// a remotely activated client type.
ActivatedClientTypeEntry myActivatedClientEntry =
RemotingConfiguration.IsRemotelyActivatedClientType(
(typeof(MyServerImpl)).FullName,myName.Name);
Console.WriteLine("The Object type : "
+myActivatedClientEntry.ObjectType);
Console.WriteLine("The Application Url : "
+myActivatedClientEntry.ApplicationUrl);
if (myActivatedClientEntry != null)
Console.WriteLine("Object is client activated");
else
Console.WriteLine("Object is not client activated");
Assembly* myAssembly = Assembly::GetAssembly(__typeof(MyServerImpl));
AssemblyName* myName = myAssembly->GetName();
// Check whether the 'MyServerImpl' type is registered as
// a remotely activated client type.
ActivatedClientTypeEntry* myActivatedClientEntry =
RemotingConfiguration::IsRemotelyActivatedClientType((__typeof(MyServerImpl))->FullName, myName->Name);
Console::WriteLine(S"The Object type : {0}", myActivatedClientEntry->ObjectType);
Console::WriteLine(S"The Application Url : {0}", myActivatedClientEntry->ApplicationUrl);
- SecurityPermission
for configuration of the remoting infrastructure. Demand value: SecurityAction.Demand; Permission value: SecurityPermissionFlag.RemotingConfiguration
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.