Esempio n. 1
0
 public virtual XAttr.Builder SetNameSpace(XAttr.NameSpace ns)
 {
     this.ns = ns;
     return(this);
 }
Esempio n. 2
0
 private XAttr(XAttr.NameSpace ns, string name, byte[] value)
 {
     this.ns    = ns;
     this.name  = name;
     this.value = value;
 }
Esempio n. 3
0
 private static bool IsUserVisible(XAttr xAttr)
 {
     XAttr.NameSpace ns = xAttr.GetNameSpace();
     return(ns == XAttr.NameSpace.User || ns == XAttr.NameSpace.Trusted);
 }