I would like to look at and modify the information submitted via the PUT verb inside a changeInterceptor.
For instance I might want to scrub all values passed in before updating my dataSource.
Or maybe I could call a Data Service via java script and not pass in all the current properties on the object rather complete there values on the server.
Soo...
OnChangeMyObject<MyObject,Update...>{
if(UpdateOperations == UpdateOperations.change){
MyObject == the object to be updated but not the object passed in from the
caller. How can I access the object from the caller?
}
}