forked from ghuntley/Heijden.Dns
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/stylecop' into develop
- Loading branch information
Showing
17 changed files
with
314 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Ubiety.Dns.Core | ||
{ | ||
/// <summary> | ||
/// Additional resource record | ||
/// </summary> | ||
public class AdditionalRR : ResourceRecord | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="AdditionalRR" /> class | ||
/// </summary> | ||
/// <param name="br"><see cref="ResourceRecord" /> for the record data</param> | ||
public AdditionalRR(RecordReader br) | ||
: base(br) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Ubiety.Dns.Core | ||
{ | ||
/// <summary> | ||
/// Answer resource record | ||
/// </summary> | ||
public class AnswerRR : ResourceRecord | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="AnswerRR" /> class | ||
/// </summary> | ||
/// <param name="br"><see cref="RecordReader" /> for the record data</param> | ||
public AnswerRR(RecordReader br) | ||
: base(br) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Ubiety.Dns.Core | ||
{ | ||
/// <summary> | ||
/// Authority resource record | ||
/// </summary> | ||
public class AuthorityRR : ResourceRecord | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="AuthorityRR" /> class | ||
/// </summary> | ||
/// <param name="br"><see cref="ResourceRecord" /> for the record data</param> | ||
public AuthorityRR(RecordReader br) | ||
: base(br) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.