/// <summary>  Constructs a TransportProperties object that inherits its properties
 /// from a parent. Call the Agent.getDefaultTransportProperties method to
 /// obtain the default TransportProperties object for a given transport
 /// protocol.
 /// 
 /// </summary>
 /// <param name="parent">The parent TransportProperties object, usually obtained
 /// by calling Agent.getDefaultTransportProperties
 /// </param>
 public TransportProperties( TransportProperties parent )
 {
     fParent = parent;
 }
 public InMemoryTransport(TransportProperties props)
     : base(props)
 {
     // TODO Auto-generated constructor stub
 }
示例#3
0
 /// <summary>  Constructs a TransportProperties object that inherits its properties
 /// from a parent. Call the Agent.getDefaultTransportProperties method to
 /// obtain the default TransportProperties object for a given transport
 /// protocol.
 ///
 /// </summary>
 /// <param name="parent">The parent TransportProperties object, usually obtained
 /// by calling Agent.getDefaultTransportProperties
 /// </param>
 public TransportProperties(TransportProperties parent)
 {
     fParent = parent;
 }