Apache.NMS.ActiveMQ.Commands.Message.IsExpired C# (CSharp) Method

IsExpired() public method

public IsExpired ( ) : bool
return bool
        public bool IsExpired()
        {
            return this.expiration == 0 ? false : DateTime.UtcNow > DateUtils.ToDateTimeUtc(this.expiration);
        }