Show / Hide Table of Contents

    Class Edge

    Represents the edge.

    Inheritance
    Object
    Edge
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Platform.Protocols.Gexf
    Assembly: Platform.Protocols.dll
    Syntax
    public class Edge

    Fields

    | Improve this Doc View Source

    ElementName

    The element name.

    Declaration
    public static readonly string ElementName
    Field Value
    Type Description
    String
    | Improve this Doc View Source

    IdAttributeName

    The id attribute name.

    Declaration
    public const string IdAttributeName = "id"
    Field Value
    Type Description
    String
    | Improve this Doc View Source

    LabelAttributeName

    The label attribute name.

    Declaration
    public const string LabelAttributeName = "label"
    Field Value
    Type Description
    String
    | Improve this Doc View Source

    SourceAttributeName

    The source attribute name.

    Declaration
    public const string SourceAttributeName = "source"
    Field Value
    Type Description
    String
    | Improve this Doc View Source

    TargetAttributeName

    The target attribute name.

    Declaration
    public const string TargetAttributeName = "target"
    Field Value
    Type Description
    String

    Properties

    | Improve this Doc View Source

    Id

    Gets or sets the id value.

    Declaration
    public long Id { get; set; }
    Property Value
    Type Description
    Int64
    | Improve this Doc View Source

    Label

    Gets or sets the label value.

    Declaration
    public string Label { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Source

    Gets or sets the source value.

    Declaration
    public long Source { get; set; }
    Property Value
    Type Description
    Int64
    | Improve this Doc View Source

    Target

    Gets or sets the target value.

    Declaration
    public long Target { get; set; }
    Property Value
    Type Description
    Int64

    Methods

    | Improve this Doc View Source

    WriteXml(XmlWriter)

    Writes the xml using the specified writer.

    Declaration
    public void WriteXml(XmlWriter writer)
    Parameters
    Type Name Description
    XmlWriter writer

    The writer.

    | Improve this Doc View Source

    WriteXml(XmlWriter, Int64, Int64, Int64)

    Writes the xml using the specified writer.

    Declaration
    public static void WriteXml(XmlWriter writer, long id, long sourceNodeId, long targetNodeId)
    Parameters
    Type Name Description
    XmlWriter writer

    The writer.

    Int64 id

    The id.

    Int64 sourceNodeId

    The source node id.

    Int64 targetNodeId

    The target node id.

    | Improve this Doc View Source

    WriteXml(XmlWriter, Int64, Int64, Int64, String)

    Writes the xml using the specified writer.

    Declaration
    public static void WriteXml(XmlWriter writer, long id, long sourceNodeId, long targetNodeId, string label)
    Parameters
    Type Name Description
    XmlWriter writer

    The writer.

    Int64 id

    The id.

    Int64 sourceNodeId

    The source node id.

    Int64 targetNodeId

    The target node id.

    String label

    The label.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX