Microsoft.WindowsAzure.MobileServices.Sync.OperationQueue.Compare C# (CSharp) Method

Compare() private static method

private static Compare ( BinaryOperatorKind kind, string member, object value ) : BinaryOperatorNode
kind BinaryOperatorKind
member string
value object
return BinaryOperatorNode
        private static BinaryOperatorNode Compare(BinaryOperatorKind kind, string member, object value)
        {
            return new BinaryOperatorNode(kind, new MemberAccessNode(null, member), new ConstantNode(value));
        }
    }