Ejemplo n.º 1
0
        public ArsMagnaException Attach
        (
            [NotNull] BinaryAttachment attachment
        )
        {
            Code.NotNull(attachment, "attachment");

            Attachments.Add(attachment);

            return(this);
        }
Ejemplo n.º 2
0
        public ArsMagnaException Attach
        (
            [NotNull] BinaryAttachment attachment
        )
        {
            Sure.NotNull(attachment, nameof(attachment));

            Attachments.Add(attachment);

            return(this);
        }