This documentation is archived and is not being maintained.
RemotingConfiguration::IsWellKnownClientType Method (Type)
Visual Studio 2010
Checks whether the specified object Type is registered as a well-known client type.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::RemotingConfiguration)] public: static WellKnownClientTypeEntry^ IsWellKnownClientType( Type^ svrType )
Parameters
- svrType
- Type: System::Type
The object Type 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. |
// Check whether the specified object type is registered as // well known client type or not. WellKnownClientTypeEntry^ myWellKnownClientType = RemotingConfiguration::IsWellKnownClientType( MyServerImpl::typeid ); Console::WriteLine( "The Object type is {0}", myWellKnownClientType->ObjectType ); Console::WriteLine( "The Object Url is {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: