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