GetXmlType() приватный Метод

Get the Xml query type at the specified index in the array of types.
private GetXmlType ( int idxType ) : XmlQueryType
idxType int
Результат 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);
 }
Пример #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);
 }
Пример #8
0
 public static XmlAtomicValue TimeSpanToAtomicValue(TimeSpan value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Пример #9
0
 public static XmlAtomicValue XmlQualifiedNameToAtomicValue(XmlQualifiedName value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Пример #10
0
 public static XmlAtomicValue SingleToAtomicValue(float value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Пример #11
0
 public static XmlAtomicValue Int64ToAtomicValue(long value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }
Пример #12
0
 public static XmlAtomicValue DecimalToAtomicValue(decimal value, int index, XmlQueryRuntime runtime)
 {
     return(new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value));
 }