System.Xml.Schema.IdRefNode.IdRefNode C# (CSharp) Method

IdRefNode() private method

private IdRefNode ( IdRefNode next, string id, int lineNo, int linePos ) : System
next IdRefNode
id string
lineNo int
linePos int
return System
        internal IdRefNode(IdRefNode next, string id, int lineNo, int linePos)
        {
            this.Id = id;
            this.LineNo = lineNo;
            this.LinePos = linePos;
            this.Next = next;
        }
    }
IdRefNode