This documentation is archived and is not being maintained.
RemotingConfiguration::IsWellKnownClientType Method (String, String)
Visual Studio 2010
Checks whether the object specified by its type name and assembly name is registered as a well-known client type.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::RemotingConfiguration)] public: static WellKnownClientTypeEntry^ IsWellKnownClientType( 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::WellKnownClientTypeEntryThe WellKnownClientTypeEntry 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. |
MyServerImpl ^ myObject = gcnew MyServerImpl; // Get the assembly for the 'MyServerImpl' object. Assembly^ myAssembly = Assembly::GetAssembly( MyServerImpl::typeid ); AssemblyName^ myName = myAssembly->GetName(); // Check whether the specified object type is registered as // well-known client type. WellKnownClientTypeEntry^ myWellKnownClientType = RemotingConfiguration::IsWellKnownClientType( MyServerImpl::typeid->FullName, myName->Name ); Console::WriteLine( "The Object type :{0}", myWellKnownClientType->ObjectType ); Console::WriteLine( "The Object Uri :{0}", myWellKnownClientType->ObjectUrl );
- 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: