System.Xml.XmlEntity.XmlEntity C# (CSharp) Method

XmlEntity() private method

private XmlEntity ( String name, String strdata, string publicId, string systemId, String notationName, XmlDocument doc ) : System.Diagnostics
name String
strdata String
publicId string
systemId string
notationName String
doc XmlDocument
return System.Diagnostics
        internal XmlEntity( String name, String strdata, string publicId, string systemId, String notationName, XmlDocument doc ) : base( doc ) {
            this.name = doc.NameTable.Add(name);
            this.publicId = publicId;
            this.systemId = systemId;
            this.notationName = notationName;
            this.unparsedReplacementStr = strdata;
            this.childrenFoliating = false;
        }