System.ComponentModel.ScriptExpression.ParsePropertyAccess C# (CSharp) Method

ParsePropertyAccess() private static method

private static ParsePropertyAccess ( string expression ) : PropertyAccessExpression
expression string
return PropertyAccessExpression
        private static PropertyAccessExpression ParsePropertyAccess(string expression)
        {
            string[] pathParts = ParseParts(expression);

            if (pathParts != null) {
                return new PropertyAccessExpression(pathParts);
            }

            return null;
        }