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

BytesToAtomicValue() public static method

public static BytesToAtomicValue ( byte value, int index, XmlQueryRuntime runtime ) : XmlAtomicValue
value byte
index int
runtime XmlQueryRuntime
return System.Xml.Schema.XmlAtomicValue
        public static XmlAtomicValue BytesToAtomicValue(byte[] value, int index, XmlQueryRuntime runtime) {
            return new XmlAtomicValue(runtime.GetXmlType(index).SchemaType, value);
        }