Represents the collection of directed links maintained by the Network class. See Links . Duplicates and null values are not allowed.

Namespace:  BayesServer
Assembly:  BayesServer (in BayesServer.dll)
Version: 2.2.0.0 (2.2.0.0)

Syntax

C#
public sealed class NetworkLinkCollection : IList<Link>, 
	ICollection<Link>, IEnumerable<Link>, IEnumerable
Visual Basic (Declaration)
Public NotInheritable Class NetworkLinkCollection _
	Implements IList(Of Link), ICollection(Of Link),  _
	IEnumerable(Of Link), IEnumerable
Visual C++
public ref class NetworkLinkCollection sealed : IList<Link^>, 
	ICollection<Link^>, IEnumerable<Link^>, IEnumerable

Remarks

This collection contains all links in a network. To find links specific to a particular node, see LinksIn and LinksOut.

Inheritance Hierarchy

System..::.Object
  BayesServer..::.NetworkLinkCollection

See Also