Realtime updates
There are event handlers you can use that are triggered when a feature is updated.
When a server feature is updated:
c.OnServerFeatureUpdated = (IFeature feature) =>{ // Do something when a server feature is updated};
When a client feature is updated, we also get the id of the user that updated the feature:
c.OnClientFeatureUpdated = (IFeature feature, string clientId) =>{ // Do something when a client feature is updated};