Simpl.OODSS.Messages.UpdateMessage.ProcessUpdate C# (CSharp) Method

ProcessUpdate() public abstract method

Allows for custom processing of ResponseMessages by ServicesClient, without extending that.
public abstract ProcessUpdate ( Scope objectRegistry ) : void
objectRegistry Scope provide a context for response message processing.
return void
        public abstract void ProcessUpdate(Scope<object> objectRegistry);

Usage Example

 private void ProcessUpdate(UpdateMessage updateMessage)
 {
     updateMessage.ProcessUpdate(ObjectRegistry);
 }