Show / Hide Table of Contents

Class EdnsDAUOption

DNSSEC Algorithm Understood.

Inheritance
Object
EdnsOption
EdnsDAUOption
Inherited Members
EdnsOption.Type
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Makaretu.Dns
Assembly: Makaretu.Dns.dll
Syntax
public class EdnsDAUOption : EdnsOption
Remarks

Defined in RFC 6975 - Signaling Cryptographic Algorithm Understanding in DNS Security Extensions(DNSSEC)

Constructors

| Improve this Doc View Source

EdnsDAUOption()

Creates a new instance of the EdnsDAUOption class.

Declaration
public EdnsDAUOption()

Properties

| Improve this Doc View Source

Algorithms

The understood algorithms.

Declaration
public List<SecurityAlgorithm> Algorithms { get; set; }
Property Value
Type Description
List<SecurityAlgorithm>

A list of implemented SecurityAlgorithm.

Methods

| Improve this Doc View Source

Create()

Create a new instance of the EdnsDAUOption class with the known/implemented security algorithms.

Declaration
public static EdnsDAUOption Create()
Returns
Type Description
EdnsDAUOption
Remarks

The Algorithms are obtained from the SecurityAlgorithmRegistry.

| Improve this Doc View Source

ReadData(WireReader, Int32)

Read the data that is specific to the option Type.

Declaration
public override void ReadData(WireReader reader, int length)
Parameters
Type Name Description
WireReader reader

The source of the option's data.

Int32 length

The length, in bytes, of the data.

Overrides
EdnsOption.ReadData(WireReader, Int32)
Remarks

Derived classes must implement this method.

| Improve this Doc View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
String
Overrides
Object.ToString()
| Improve this Doc View Source

WriteData(WireWriter)

Write the data that is specific to the resource record Type.

Declaration
public override void WriteData(WireWriter writer)
Parameters
Type Name Description
WireWriter writer

The destination for the option's data.

Overrides
EdnsOption.WriteData(WireWriter)
Remarks

Derived classes must implement this method.

  • Improve this Doc
  • View Source
Back to top Generated by DocFX