Exemplo n.º 1
0
 private ZorgaanbiedersCollection(XDocument doc)
 {
     XMLUtils.Validate(doc, Schemas, ZorgaanbiederslijstRoot);
     this.dict = Parse(doc);
 }
 private Gegevensdienstnamenlijst(XDocument doc)
 {
     XMLUtils.Validate(doc, Schemas, GegevensdienstnamenlijstRoot);
     Data = ParseXml(doc);
 }
 private Zorgaanbiederslijst(XDocument doc)
 {
     XMLUtils.Validate(doc, Schemas, ZorgaanbiederslijstRoot);
     Data = ParseXml(doc);
 }
Exemplo n.º 4
0
 private Whitelist(XDocument doc)
 {
     XMLUtils.Validate(doc, Schemas, WhitelistRoot);
     this.hosts = Parse(doc);
 }