public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth, NodeOptions options);
public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location);
/// <summary> /// Create a new node using the default options for this node driver type. /// </summary> public Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth) { return CreateNode (name, size, image, location, auth, DefaultOptions); }