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

LoadText() public static method

Loads the object graph as Data Contract XML data from specified file and creates a SerializedExpression which represents an expression.
public static LoadText ( FileInfo file ) : SerializedExpression
file FileInfo The file to load and use as source.
return SerializedExpression
        public static SerializedExpression LoadText(FileInfo file)
        {
            return LoadText(null, file);
        }

Same methods

YacqExpression::LoadText ( System.Stream stream ) : SerializedExpression
YacqExpression::LoadText ( String data ) : SerializedExpression
YacqExpression::LoadText ( SymbolTable symbols, FileInfo file ) : SerializedExpression
YacqExpression::LoadText ( SymbolTable symbols, System.Stream stream ) : SerializedExpression
YacqExpression::LoadText ( SymbolTable symbols, String data ) : SerializedExpression