Simpl.OODSS.Messages.RequestMessage.IsDisposable C# (CSharp) Method

IsDisposable() public method

Indicates whether or not this type of message may be ignored by the server, if the server becomes backed-up. For example, a RequestMessage subclass that simply requests the server's current state may be ignored if a more recent copy of one has arrived later. By default, RequestMessages are not disposable; this method should be overriden if they are to be.
public IsDisposable ( ) : bool
return bool
        public bool IsDisposable()
        {
            return false;
        }