CustomPeerResolverService Class
Provides a basic implementation of a custom peer resolver service.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
[ObsoleteAttribute("PeerChannel feature is obsolete and will be removed in the future.", false)] [ServiceBehaviorAttribute(UseSynchronizationContext = false, InstanceContextMode = InstanceContextMode::Single, ConcurrencyMode = ConcurrencyMode::Multiple)] public ref class CustomPeerResolverService : IPeerResolverContract
| Name | Description | |
|---|---|---|
![]() | CustomPeerResolverService() | Initializes a new default instance of the CustomPeerResolverService class. |
| Name | Description | |
|---|---|---|
![]() | CleanupInterval | Gets or sets the recurring length of time after which stale entries are deleted from the peer resolver service's registration lookup table. |
![]() | ControlShape | Gets or sets whether referrals are shared by the peer resolver service. |
![]() | RefreshInterval | Gets or sets the length of time that entries remain valid in a peer resolver service's registration lookup table. |
| Name | Description | |
|---|---|---|
![]() | Close() | Closes the peer resolver service. |
![]() | 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 the default hash function. (Inherited from Object.) |
![]() | GetServiceSettings() | Obtains the specific response settings for the peer resolver service. |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | Open() | Opens the peer resolver service. |
![]() | Refresh(RefreshInfo^) | Refreshes the expiry of an entry in the peer resolver service's registration lookup table. |
![]() | Register(Guid, String^, PeerNodeAddress^) | Adds a new entry to the registration lookup table of the peer resolver service. |
![]() | Register(RegisterInfo^) | Adds a new entry to the registration lookup table of the peer resolver service. |
![]() | Resolve(ResolveInfo^) | Returns a list of known endpoints for a registration entry. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | Unregister(UnregisterInfo^) | Removes a specific entry from the registration lookup table of the peer resolver service. |
![]() | Update(UpdateInfo^) | Updates an existing registration entry entry in the registration lookup table of the peer resolver service. |
The CustomPeerResolverService class defines the base implementation of a custom peer resolver service and provides lookup for the resolution of registration IDs to peer endpoint addresses within the mesh maintained by this resolver.
Notes to Implementers:
Implementers of custom peer resolvers should derive from this class and override those specific functions for which they are providing custom implementations. Any custom peer resolver must minimally implement the IPeerResolverContract interface.
Also, clients using a custom resolver must have some upper bound on client-server latency in order to successfully refresh their registration with the peer resolver service.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


