API Reference
Class
DkimRecord
Represents a parsed DKIM TXT record.
Inheritance
- Object
- DkimRecord
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Accepted by parameters
- Method DkimRecord.TryParse
Constructors
public DkimRecord(IReadOnlyDictionary<String, String> tags) #Initializes a new instance of the DkimRecord class.
Parameters
- tags System.Collections.Generic.IReadOnlyDictionary{System.String,System.String}
- Tags parsed from the record.
Methods
public static Boolean TryParse(String record, out DkimRecord result) #Returns:
BooleanAttempts to parse a DKIM record.
Parameters
- record System.String
- Raw TXT record.
- result DnsClientX.DkimRecord@
- Parsed record.
Returns
true if parsing succeeded.
Inherited Methods
Properties
public IReadOnlyDictionary<String, String> Tags { get; } #Gets the record tags.