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

Label() public method

Specifies a specific attribute for the message.
public Label ( string newLabel ) : MessageBlock
newLabel string /// The new attribute. ///
return MessageBlock
        public MessageBlock Label(string newLabel)
        {
            this.customMessage = newLabel;
            return this;
        }