XSpect.Yacq.Expressions.YacqExpression.Load C# (CSharp) Method

Load() public static method

Loads the object graph and creates a SerializedExpression which represents an expression using the specified XmlDictionaryWriter.
public static Load ( SymbolTable symbols, XmlDictionaryReader reader ) : SerializedExpression
symbols XSpect.Yacq.Symbols.SymbolTable The symbol table for the expression.
reader XmlDictionaryReader An used to read the object graph.
return SerializedExpression
        public static SerializedExpression Load(SymbolTable symbols, XmlDictionaryReader reader)
        {
            return new SerializedExpression(
                symbols,
                (Node) SerializedExpression.Serializer.ReadObject(reader)
            );
        }

Same methods

YacqExpression::Load ( XmlDictionaryReader reader ) : SerializedExpression