System.Xml.Schema.IdRefNode.IdRefNode C# (CSharp) Méthode

IdRefNode() private méthode

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