Class RouterType
Provides information about type implementing message router that directs message to specific endpoint in outbound endpoints group.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class RouterType : DomainObjectBase, IValidator, IExtensibleDataObject, IEquatable<RouterType>
  Constructors
RouterType()
Initializes a new instance of the RouterType object.
Declaration
public RouterType()
  Properties
Configuration
Gets or sets the router's default configuration to be shown on the router's configuration screen.
Declaration
public string Configuration { get; set; }
  Property Value
| Type | Description | 
|---|---|
| String | 
FullyQualifiedTypeName
Gets or sets fully qualified name of the class implementing the router.
Declaration
public string FullyQualifiedTypeName { get; set; }
  Property Value
| Type | Description | 
|---|---|
| String | 
IsMulticast
Gets flag indicating that router is a multicast router.
Declaration
public bool IsMulticast { get; }
  Property Value
| Type | Description | 
|---|---|
| Boolean | 
IsSystem
Gets flag indicating that router is provided as a part of Sentinet.
Declaration
public bool IsSystem { get; }
  Property Value
| Type | Description | 
|---|---|
| Boolean | 
Name
Gets or sets router frienly name.
Declaration
public string Name { get; set; }
  Property Value
| Type | Description | 
|---|---|
| String | 
ObjectType
Gets object type identifier.
Declaration
public override EntityType ObjectType { get; }
  Property Value
| Type | Description | 
|---|---|
| EntityType | 
Overrides
Methods
CreateRouter()
Returns new instance of the IRouter type configured in this object.
Declaration
public IRouter CreateRouter()
  Returns
| Type | Description | 
|---|---|
| IRouter | New instance of the IRouter type configured in this object.  | 
      
Equals(RouterType)
Determines whether the specified router is equal to the current router.
Declaration
public bool Equals(RouterType other)
  Parameters
| Type | Name | Description | 
|---|---|---|
| RouterType | other | The router to compare with the current router.  | 
      
Returns
| Type | Description | 
|---|---|
| Boolean | True, if routers are equal. False, if routers are not equal.  | 
      
Equals(Object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Object | obj | The object to compare with the current object.  | 
      
Returns
| Type | Description | 
|---|---|
| Boolean | True, if objects are equal. False, if objects are not equal.  | 
      
Overrides
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
  Returns
| Type | Description | 
|---|---|
| Int32 | Hash code of the current instance.  | 
      
Overrides
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| String | A string that represents the current object.  | 
      
Overrides
Validate()
Evaluates the state of this object.
Declaration
public override bool Validate()
  Returns
| Type | Description | 
|---|---|
| Boolean | True if state is valid; otherwise, false.  |