Пример #1
0
 /// <summary>
 /// Create a new Face for communication with an NDN hub at host using the
 /// default port 6363 and the default TcpTransport.
 /// </summary>
 ///
 /// <param name="host">The host of the NDN hub.</param>
 public Face(String host)
 {
     this.commandKeyChain_ = null;
     this.commandCertificateName_ = new Name();
     node_ = new Node(new TcpTransport(), new TcpTransport.ConnectionInfo(
             host, 6363));
 }
Пример #2
0
 /// <summary>
 /// Create a new Face for communication with an NDN hub with the given
 /// Transport object and connectionInfo.
 /// </summary>
 ///
 /// <param name="transport">A Transport object used for communication.</param>
 /// <param name="connectionInfo"></param>
 public Face(Transport transport, Transport.ConnectionInfo connectionInfo)
 {
     this.commandKeyChain_ = null;
     this.commandCertificateName_ = new Name();
     node_ = new Node(transport, connectionInfo);
 }
Пример #3
0
 public RegisterResponse(net.named_data.jndn.Node.RegisterResponse.Info  info, Node parent)
 {
     info_ = info;
     parent_ = parent;
 }
Пример #4
0
            public Anonymous_C3(Node paramouter_Node, Interest interestCopy_0,
						OnNetworkNack onNetworkNack_1, Face face_2, OnTimeout onTimeout_3,
						long pendingInterestId_4, WireFormat wireFormat_5, OnData onData_6)
            {
                this.interestCopy = interestCopy_0;
                    this.onNetworkNack = onNetworkNack_1;
                    this.face = face_2;
                    this.onTimeout = onTimeout_3;
                    this.pendingInterestId = pendingInterestId_4;
                    this.wireFormat = wireFormat_5;
                    this.onData = onData_6;
                    this.outer_Node = paramouter_Node;
            }
Пример #5
0
 public Anonymous_C2(Node paramouter_Node)
 {
     this.outer_Node = paramouter_Node;
 }
Пример #6
0
 public Anonymous_C0(Node paramouter_Node, net.named_data.jndn.impl.PendingInterestTable.Entry  pendingInterest_0)
 {
     this.pendingInterest = pendingInterest_0;
         this.outer_Node = paramouter_Node;
 }