1 write to ns
System.ServiceModel (1)
System\ServiceModel\Dispatcher\QueryModel.cs (1)
160this.ns = (null == ns) ? string.Empty : ns;
11 references to ns
System.ServiceModel (11)
System\ServiceModel\Dispatcher\QueryModel.cs (9)
188return (this.name.Length == 0 && this.ns.Length == 0); 212return (this.ns.Length > 0); 220return object.ReferenceEquals(this.ns, QueryDataModel.Wildcard); 243return this.ns; 281return ((qname.name.Length == this.name.Length && qname.name == this.name) && (qname.ns.Length == this.ns.Length && qname.ns == this.ns)); 297return (ns == this.ns);
System\ServiceModel\Dispatcher\QuerySelectOp.cs (2)
141return (this.qname.ns.Length == str.Length && this.qname.ns == str);