1 write to defaultSupportedQueryStringTypes
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (1)
29this.defaultSupportedQueryStringTypes = new Hashtable();
22 references to defaultSupportedQueryStringTypes
System.ServiceModel.Web (22)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (22)
30this.defaultSupportedQueryStringTypes.Add(typeof(Byte), null); 31this.defaultSupportedQueryStringTypes.Add(typeof(SByte), null); 32this.defaultSupportedQueryStringTypes.Add(typeof(Int16), null); 33this.defaultSupportedQueryStringTypes.Add(typeof(Int32), null); 34this.defaultSupportedQueryStringTypes.Add(typeof(Int64), null); 35this.defaultSupportedQueryStringTypes.Add(typeof(UInt16), null); 36this.defaultSupportedQueryStringTypes.Add(typeof(UInt32), null); 37this.defaultSupportedQueryStringTypes.Add(typeof(UInt64), null); 38this.defaultSupportedQueryStringTypes.Add(typeof(Single), null); 39this.defaultSupportedQueryStringTypes.Add(typeof(Double), null); 40this.defaultSupportedQueryStringTypes.Add(typeof(Boolean), null); 41this.defaultSupportedQueryStringTypes.Add(typeof(Char), null); 42this.defaultSupportedQueryStringTypes.Add(typeof(Decimal), null); 43this.defaultSupportedQueryStringTypes.Add(typeof(String), null); 44this.defaultSupportedQueryStringTypes.Add(typeof(Object), null); 45this.defaultSupportedQueryStringTypes.Add(typeof(DateTime), null); 46this.defaultSupportedQueryStringTypes.Add(typeof(TimeSpan), null); 47this.defaultSupportedQueryStringTypes.Add(typeof(byte[]), null); 48this.defaultSupportedQueryStringTypes.Add(typeof(Guid), null); 49this.defaultSupportedQueryStringTypes.Add(typeof(Uri), null); 50this.defaultSupportedQueryStringTypes.Add(typeof(DateTimeOffset), null); 56if (this.defaultSupportedQueryStringTypes.ContainsKey(type))