ArchiveTag.withExplicitAndRetentionId constructor

ArchiveTag.withExplicitAndRetentionId(
  1. bool isExplicit,
  2. Uuid retentionId
)
Initializes a new instance of the Is explicit. Retention id.

Implementation

ArchiveTag.withExplicitAndRetentionId(bool isExplicit, Uuid retentionId)
    : super(XmlElementNames.ArchiveTag) {
  this.IsExplicit = isExplicit;
  this.RetentionId = retentionId;
}