GetXmlType() private method

Get the Xml query type at the specified index in the array of types.
private GetXmlType ( int idxType ) : XmlQueryType
idxType int
return XmlQueryType
 public static XmlAtomicValue BytesToAtomicValue(byte[] value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
 public static XmlAtomicValue XmlQualifiedNameToAtomicValue(XmlQualifiedName value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
 public static XmlAtomicValue TimeSpanToAtomicValue(TimeSpan value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
 public static XmlAtomicValue Int64ToAtomicValue(long value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
 public static XmlAtomicValue SingleToAtomicValue(float value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
Exemplo n.º 6
0
 public static XmlAtomicValue BytesToAtomicValue(byte[] value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
 public static XmlAtomicValue DecimalToAtomicValue(decimal value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
Exemplo n.º 8
0
 public static XmlAtomicValue TimeSpanToAtomicValue(TimeSpan value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Exemplo n.º 9
0
 public static XmlAtomicValue XmlQualifiedNameToAtomicValue(XmlQualifiedName value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Exemplo n.º 10
0
 public static XmlAtomicValue SingleToAtomicValue(float value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Exemplo n.º 11
0
 public static XmlAtomicValue Int64ToAtomicValue(long value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Exemplo n.º 12
0
 public static XmlAtomicValue DecimalToAtomicValue(decimal value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }