NFluent.Extensibility.MessageBlock.WithHashCode C# (CSharp) Method

WithHashCode() public method

Requests that the Hash value is included in the description block.
public WithHashCode ( bool active = true ) : MessageBlock
active bool /// True to include the type. This is the default value. ///
return MessageBlock
        public MessageBlock WithHashCode(bool active = true)
        {
            this.value.WithHashCode(active);
            return this;
        }