Exemplo n.º 1
0
 /// <summary>
 /// Removes a network LSA item from this frame
 /// </summary>
 /// <param name="net">The network LSA item to remove</param>
 public void RemoveNetworkItem(NetworkLSAItem net)
 {
     lItems.Remove(net);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Adds a network LSA item
 /// </summary>
 /// <param name="net">The network LSA item to add</param>
 public void AddNetworkItem(NetworkLSAItem net)
 {
     lItems.Add(net);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Check whether a specific network LSA item is contained in this frame
 /// </summary>
 /// <param name="net">The network LSA item to search for</param>
 /// <returns>A bool indicating whether a specific network LSA item is contained in this frame</returns>
 public bool ContainsNetworkItem(NetworkLSAItem net)
 {
     return(lItems.Contains(net));
 }