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

WithType() public method

Requests that the type is included in the description block.
public WithType ( bool active = true, bool full = false ) : MessageBlock
active bool /// True to include the type. This is the default value. ///
full bool /// True to display the full type name (with assembly). ///
return MessageBlock
        public MessageBlock WithType(bool active = true, bool full = false)
        {
            this.value.WithType(active, full);
            return this;
        }