Class BitcoinAddress
Provides validation and generation for Bitcoin addresses.
public static class BitcoinAddress
- Inheritance
-
BitcoinAddress
- Inherited Members
Methods
TryGenerate(Span<char>, out int)
Attempts to generate a random Bitcoin address into the provided buffer.
public static bool TryGenerate(Span<char> destination, out int written)
Parameters
destinationSpan<char>Buffer receiving the generated address.
writtenintWhen the method returns, contains the number of characters produced.
Returns
- bool
trueif generation succeeded; otherwise,false.
TryGenerate(in GenerationOptions, Span<char>, out int)
Attempts to generate a random Bitcoin address using the supplied options.
public static bool TryGenerate(in GenerationOptions options, Span<char> destination, out int written)
Parameters
optionsGenerationOptionsGeneration options.
destinationSpan<char>Buffer receiving the generated address.
writtenintWhen the method returns, contains the number of characters produced.
Returns
- bool
trueif generation succeeded; otherwise,false.
TryValidate(ReadOnlySpan<char>, out ValidationResult<BitcoinAddressValue>)
Attempts to validate the supplied Bitcoin address.
public static bool TryValidate(ReadOnlySpan<char> input, out ValidationResult<BitcoinAddressValue> result)
Parameters
inputReadOnlySpan<char>Candidate Bitcoin address.
resultValidationResult<BitcoinAddressValue>The validation outcome including the parsed value when valid.
Returns
- bool
trueif validation succeeded; otherwise,false.