Пример #1
0
 /// <summary>
 /// Create an Exclude.Entry of type COMPONENT.
 /// </summary>
 ///
 /// <param name="component">The component value.</param>
 public Entry(Name.Component component)
 {
     type_ = net.named_data.jndn.Exclude.Type.COMPONENT;
     component_ = component;
 }
Пример #2
0
 /// <summary>
 /// Create an Exclude.Entry of type ANY
 /// </summary>
 ///
 public Entry()
 {
     type_ = net.named_data.jndn.Exclude.Type.ANY;
     component_ = null;
 }