Brunet.Applications.Information.Information C# (CSharp) Method

Information() public method

Creates an Information object for the node and type of service provider.
public Information ( StructuredNode node, String type ) : Brunet
node StructuredNode The node where the service is to be provided
type String The name of the application providing service (example: BasicNode)
return Brunet
    public Information(StructuredNode node, String type) {
      UserData = new Hashtable();
      _type = type;
      _node = node;
      _rpc = node.Rpc;
      _rpc.AddHandler("Information", this);
    }

Same methods

Information::Information ( StructuredNode node, String type, Brunet.Security.SecurityOverlord so ) : Brunet