Net.Graph.Neo4JD.Node.Get C# (CSharp) Method

Get() public static method

public static Get ( int id ) : Node
id int
return Node
        public static Node Get(int id)
        {
            try
            {
                Persistance.NodeRepo db = new Persistance.NodeRepo();
                return db.GetNode(id.ToString());
            }
            catch (System.Net.WebException ex)
            {
                throw new Exceptions.NodeNotFoundException(ex,id);
            }
        }

Same methods

Node::Get ( string location ) : Node