public NamespaceDecl(string prefix, string nsuri, XmlSqlBinaryReader.NamespaceDecl nextInScope, XmlSqlBinaryReader.NamespaceDecl prevDecl, int scope, bool implied)
 {
     this.prefix = prefix;
     this.uri = nsuri;
     this.scopeLink = nextInScope;
     this.prevLink = prevDecl;
     this.scope = scope;
     this.implied = implied;
 }
 public XmlSqlBinaryReader.NamespaceDecl Clear()
 {
     XmlSqlBinaryReader.NamespaceDecl nsdecls = this.nsdecls;
     this.nsdecls = null;
     return nsdecls;
 }