36 instantiations of NameType
System.Data.Common (36)
System\Data\XDRSchema.cs (36)
232new NameType("bin.base64", typeof(byte[]) ), 233new NameType("bin.hex", typeof(byte[]) ), 234new NameType("boolean", typeof(bool) ), 235new NameType("byte", typeof(sbyte) ), 236new NameType("char", typeof(char) ), 237new NameType("date", typeof(DateTime)), 238new NameType("dateTime", typeof(DateTime)), 239new NameType("dateTime.tz", typeof(DateTime)), 240new NameType("entities", typeof(string) ), 241new NameType("entity", typeof(string) ), 242new NameType("enumeration", typeof(string) ), 243new NameType("fixed.14.4", typeof(decimal) ), 244new NameType("float", typeof(double) ), 245new NameType("i1", typeof(sbyte) ), 246new NameType("i2", typeof(short) ), 247new NameType("i4", typeof(int) ), 248new NameType("i8", typeof(long) ), 249new NameType("id", typeof(string) ), 250new NameType("idref", typeof(string) ), 251new NameType("idrefs", typeof(string) ), 252new NameType("int", typeof(int) ), 253new NameType("nmtoken", typeof(string) ), 254new NameType("nmtokens", typeof(string) ), 255new NameType("notation", typeof(string) ), 256new NameType("number", typeof(decimal) ), 257new NameType("r4", typeof(float) ), 258new NameType("r8", typeof(double) ), 259new NameType("string", typeof(string) ), 260new NameType("time", typeof(DateTime)), 261new NameType("time.tz", typeof(DateTime)), 262new NameType("ui1", typeof(byte) ), 263new NameType("ui2", typeof(ushort) ), 264new NameType("ui4", typeof(uint) ), 265new NameType("ui8", typeof(ulong) ), 266new NameType("uri", typeof(string) ), 267new NameType("uuid", typeof(Guid) ),
5 references to NameType
System.Data.Common (5)
System\Data\XDRSchema.cs (5)
231private static readonly NameType[] s_mapNameTypeXdr = { 270private static NameType FindNameType(string name) 283foreach (NameType nt in s_mapNameTypeXdr) 294private static readonly NameType s_enumerationNameType = FindNameType("enumeration"); 313NameType nt = FindNameType(strType);