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

StringToAtomicValue() public static method

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