Show / Hide Table of Contents

Class AccountRequiresMemoException

AccountRequiresMemoException is thrown when a transaction is trying to submit a payment operation to an account that requires a memo.

See SEP0029: https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0029.md

Inheritance
System.Object
AccountRequiresMemoException
Namespace: System.Dynamic.ExpandoObject
Assembly: stellar-dotnet-sdk.dll
Syntax
public class AccountRequiresMemoException : Exception

Constructors

AccountRequiresMemoException(String, String, Operation)

Declaration
public AccountRequiresMemoException(string message, string accountId, Operation operation)
Parameters
Type Name Description
System.String message
System.String accountId
Operation operation

Properties

AccountId

AccountId which requires the memo.

Declaration
public string AccountId { get; }
Property Value
System.String

Operation

Operation where AccountId is the destination.

Declaration
public Operation Operation { get; }
Property Value
Operation

Back to top Generated by DocFX