ValidateWithIndex method

  1. @override
void ValidateWithIndex(
  1. int attachmentIndex
)
override
Validates this instance. Index of this attachment.

Implementation

@override
void ValidateWithIndex(int attachmentIndex) {
  if (StringUtils.IsNullOrEmpty(this._fileName) &&
      (this._content == null) &&
      (this._contentStream == null)) {
    throw new ServiceValidationException(
        "FileAttachmentContentIsNotSet($attachmentIndex)");
  }
}