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

BooleanToAtomicValue() public static method

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