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
コード例 #1
0
 public static XmlAtomicValue BytesToAtomicValue(byte[] value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
コード例 #2
0
 public static XmlAtomicValue XmlQualifiedNameToAtomicValue(XmlQualifiedName value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
コード例 #3
0
 public static XmlAtomicValue TimeSpanToAtomicValue(TimeSpan value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
コード例 #4
0
 public static XmlAtomicValue Int64ToAtomicValue(long value, int index, XmlQueryRuntime runtime) {
     return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
 }
コード例 #5
0
 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));
 }
コード例 #7
0
 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));
 }