Skip to content

Commit

Permalink
doc(core): improve GenerateDnsRecord
Browse files Browse the repository at this point in the history
  • Loading branch information
egbakou committed Dec 19, 2023
1 parent 026ebc0 commit 60c6612
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/DomainVerifier/Interfaces/IDnsRecordsGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ namespace DomainVerifier.Interfaces
public interface IDnsRecordsGenerator
{
/// <summary>
/// Generates a domain name verification TXT or CNS record.
/// Generates a domain name verification code.
/// </summary>
/// <returns> The generated record. </returns>
/// <param name="length"> The desired length of the generated code (default is 10). </param>
/// <returns> The generated code. </returns>
string GenerateDnsRecord(int length = 10);

/// <summary>
Expand Down

0 comments on commit 60c6612

Please sign in to comment.