Show / Hide Table of Contents

    Class Node

    Represents the node.

    Inheritance
    Object
    Node
    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 Node

    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

    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

    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, String)

    Writes the xml using the specified writer.

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

    The writer.

    Int64 id

    The id.

    String label

    The label.

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