Kyeotic
Kyeotic

Reputation: 19847

Visual Studio DebuggerStepThrough for Property Setter

I do not want to disable Visual Studio's normal handling of all exceptions. I am looking for a way to ignore the exceptions raised by the setter of a specific property. I am aware of [DebuggerNonUserCode] and [DebuggerStepThrough], but they don't seem to be applicable to properties, or more specifically setters.

Is this possible?

Upvotes: 12

Views: 1960

Answers (1)

JaredPar
JaredPar

Reputation: 754565

I believe the problem you're running into is you're attempting to apply the attribute to the property instead of the individual accessors. The accessors are the actual methods and where the attribute needs to go. For example

int Property {
  [DebuggerNonUserCode]
  get { ... }
  [DebuggerNonUserCode]
  set { ... }
}

Upvotes: 25

Related Questions