System.Xml.Xsl.Runtime.XmlILStorageConverter.TimeSpanToAtomicValue C# (CSharp) Method

TimeSpanToAtomicValue() public static method

public static TimeSpanToAtomicValue ( System.TimeSpan value, int index, XmlQueryRuntime runtime ) : XmlAtomicValue
value System.TimeSpan
index int
runtime XmlQueryRuntime
return System.Xml.Schema.XmlAtomicValue
        public static XmlAtomicValue TimeSpanToAtomicValue(TimeSpan value, int index, XmlQueryRuntime runtime) {
            return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
        }