Class EmailDomains
Represents a collection of email domains, categorized into public, disposable, and SE reserved domains. The domain lists are case-insensitive.
Inherited Members
Namespace: SecureExchangesSDK.Models.Transport
Assembly: SecureExchangesSDK.dll
Syntax
public class EmailDomains
Properties
DisposableDomainsList
Gets or sets a case-insensitive list of disposable email domains.
Declaration
[JsonProperty("disposable-domains")]
public HashSet<string> DisposableDomainsList { get; set; }
Property Value
| Type | Description |
|---|---|
| HashSet<string> |
PublicDomainsList
Gets or sets a case-insensitive list of public email domains.
Declaration
[JsonProperty("public-domains")]
public HashSet<string> PublicDomainsList { get; set; }
Property Value
| Type | Description |
|---|---|
| HashSet<string> |
SEReservedDomainsList
Gets or sets a case-insensitive list of SE reserved email domains.
Declaration
[JsonProperty("se-reserved-domains")]
public HashSet<string> SEReservedDomainsList { get; set; }
Property Value
| Type | Description |
|---|---|
| HashSet<string> |