What is the InterceptedAttribute?
Last updated
Was this helpful?
The InterceptedAttribute is an attribute defined in Mobilize.WebMAP.Common.Attributes. This attribute is defined in Mobilize.WebMAP.Common assembly.
You add this attribute to a property inside an observable class that you want it to notify changes, you need to declare it as an auto implemented property.
[Intercepted]
public string MyProperty
{
get;
set;
}The weaver when compiling the project that contains the observable class with the intercepted property will inject some behind generated code to the property that let WebMAP call the corresponding services. These services notify the changes by the usage of the property.
Last updated
Was this helpful?
Was this helpful?