I would like to implement the following suggestion from CodeContracts:

CodeContracts: MyModule: Method MyModule.MyClass.MyMethod: 
To mask *all* warnings issued like the precondition add the attribute: 

[SuppressMessage("Microsoft.Contracts", "RequiresAtCall-propertyAccessor != null")] 

to the method 

System.Linq.Expressions.Expression.Property(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)

It feels like I should be able to use SupressMessage with the Target attribute to make this happen. However, because this is a Framework method, I'm not sure.

//doesn't work
[module: SuppressMessage("Microsoft.Contracts", "RequiresAtCall-propertyAccessor != null", Scope = "Member", Target = "System.Linq.Expressions.Expression.Property(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", Justification = "This isn't covered by Linq Contracts yet.")]

How can I globally suppress this warning, so I don't have to baseline or suppress all of the callsite warnings?

EDIT: The specific usage that requires this measure is:

void mymethod()
{
    var myObserver = new PropertyObserver<MyViewModel>();
    //this line throws the error, within the n => n.Value expression
    myObserver.RegisterHandler(n => n.Value, OnValueChanged);
}

public class PropertyObserver<TPropertySource> where TPropertySource : INotifyPropertyChanged
{
    public PropertyObserver<TPropertySource> RegisterHandler(
        Expression<Func<TPropertySource, object>> expression,
        Action<TPropertySource> handler)
    {
        //what this does is irrelevant; the violation  occurs in the method call
    }
}

//n => n.Value decompiles to the following
public static MemberExpression Property (Expression expression, MethodInfo   propertyAccessor)
{
    //and this line is the message I want to suppress, but it's in the .NET framework.
    ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor");
    ValidateMethodInfo(propertyAccessor);
    return Property (expression, GetProperty(propertyAccessor));
}
link|improve this question

Is there a reason that you're not using Contract.Assume? Just too many occurrences? – Porges Jan 12 at 22:11
We've tried to stay away from Contract.Assume generally, but yes, there are quite a few occurrences, and we continue to add more. – ranomore Jan 12 at 22:14
I'm guessing that the problem then is that the various ways to acquire Expressions/MethodInfos don't Ensure that the result is non-null. Have you considered using some wrapper methods such as those given in: social.msdn.microsoft.com/Forums/en-NZ/codecontracts/thread/… ? That way you only need to Assume in one place, so your Assume usage is minimized. – Porges Jan 12 at 22:22
That's a great idea, but the problem is the contract violation occurs in the call to the method, not within the method (because the method expects to be passed an expression). I'll add an example. – ranomore Jan 12 at 22:47
In your real code, are you building up the n=>n.Value by expression trees? Your error mentions Expression.Property but that doesn't appear in the sample. – Porges Jan 12 at 23:11
show 2 more comments
feedback

3 Answers

up vote 1 down vote accepted
+50

After some more investigation with ranomore, there seems to be a bug in Code Contracts.

The class being accessed via n => n.Value has a generic T Value property. If the class is changed to a non-generic class (with object Value) the warning disappears. (A generic class with object Value also gives the warning).

Of course, this doesn't answer the original question, but I don't think it's possible to do that.

link|improve this answer
It must not be, or else someone would have answered it already. ;) – ranomore Jan 13 at 0:14
feedback

Take a peek at the Build tab of your project properties. There is a "Suppress Warnings" field.

http://msdn.microsoft.com/en-us/library/7f28x9z3%28v=vs.80%29.aspx

link|improve this answer
1  
These are not compiler warnings, they are code contract warnings. As far as I can tell, they don't have a number -- so I can't just call /nowarn:5275 – ranomore Dec 22 '11 at 20:18
Ah, I didn't pay close enough attention! This is the price you pay for no sleep. – Inuyasha Dec 22 '11 at 20:43
feedback
  1. Add GlobalSuppressions.cs to root of project.

  2. Add your [module...

  3. Replace the word module with assembly.

Does that work?

link|improve this answer
I had high hopes, but alas, it does not work. I removed the Scope = "Member" too, just in case it mattered. – ranomore Jan 10 at 0:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.