This topic has not yet been rated - Rate this topic

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.

Namespace:  System.Runtime.Remoting
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.ActivatedClientTypeEntry
The ActivatedClientTypeEntry that corresponds to the specified object type.
ExceptionCondition
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);

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.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.