WellKnownClientTypeEntry Class
Holds values for an object type registered on the client as a server-activated type (single call or singleton).
Assembly: mscorlib (in mscorlib.dll)
The WellKnownClientTypeEntry type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | WellKnownClientTypeEntry(Type, String) | Initializes a new instance of the WellKnownClientTypeEntry class with the given type and URL. |
![]() | WellKnownClientTypeEntry(String, String, String) | Initializes a new instance of the WellKnownClientTypeEntry class with the given type, assembly name, and URL. |
| Name | Description | |
|---|---|---|
![]() | ApplicationUrl | Gets or sets the URL of the application to activate the type in. |
![]() | AssemblyName | Gets the assembly name of the object type configured to be a remote-activated type. (Inherited from TypeEntry.) |
![]() | ObjectType | Gets the Type of the server-activated client type. |
![]() | ObjectUrl | Gets the URL of the server-activated client object. |
![]() | TypeName | Gets the full type name of the object type configured to be a remote-activated type. (Inherited from TypeEntry.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns the full type name, assembly name, and object URL of the server-activated client type as a String. (Overrides Object::ToString().) |
Server-activated types can be either single call or singleton. If a class is registered as a single call type, a new instance is created each time a call from the client arrives. All calls to a singleton object are handled by one instance of that object, unless that object has been collected.
Any client that knows the URI of a registered server-activated object can obtain a proxy for this object by registering the channel it prefers with ChannelServices and activating the object by calling new or Activator::GetObject. To activate a server-activated object with new, you must first register the server-activated object type on the client using the RegisterWellKnownClientType method. By calling RegisterWellKnownClientType, you are giving the remoting infrastructure the location of the remote object, which allows the new keyword to create it. If, on the other hand, you use the Activator::GetObject method to activate a server-activated object, you must supply it with the object's URL as an argument, so no prior registration on the client is necessary.
For a detailed description of server-activated objects and remote object activation, see [<topic://cpconActivation>].
#using <System.Runtime.Remoting.dll> #using <System.dll> #using <WellKnownClientTypeEntry_Share.dll> using namespace System; using namespace System::Runtime::Remoting; using namespace System::Runtime::Remoting::Channels; using namespace System::Runtime::Remoting::Channels::Http; int main() { // Create a 'HttpChannel' object and register with channel services. ChannelServices::RegisterChannel( gcnew HttpChannel ); Console::WriteLine( " Start calling from Client One......." ); WellKnownClientTypeEntry^ myWellKnownClientTypeEntry = gcnew WellKnownClientTypeEntry( HelloServer::typeid,"http://localhost:8086/SayHello" ); myWellKnownClientTypeEntry->ApplicationUrl = "http://localhost:8086/SayHello"; RemotingConfiguration::RegisterWellKnownClientType( myWellKnownClientTypeEntry ); // Get the proxy object for the remote object. HelloServer^ myHelloServerObject = gcnew HelloServer; // Retrieve an array of object types registered on the // client end as well-known types. array<WellKnownClientTypeEntry^>^myWellKnownClientTypeEntryCollection = RemotingConfiguration::GetRegisteredWellKnownClientTypes(); Console::WriteLine( "The Application Url to activate the Remote Object :{0}", myWellKnownClientTypeEntryCollection[ 0 ]->ApplicationUrl ); Console::WriteLine( "The 'WellKnownClientTypeEntry' object :{0}", myWellKnownClientTypeEntryCollection[ 0 ] ); // Make remote method calls. for ( int i = 0; i < 5; i++ ) Console::WriteLine( myHelloServerObject->HelloMethod( " Client One" ) ); }
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.
