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