コード例 #1
0
ファイル: AccountEntry.cs プロジェクト: kodlar/stellar-sdk
                public static AccountEntryV1 Decode(XdrDataInputStream stream)
                {
                    AccountEntryV1 decodedAccountEntryV1 = new AccountEntryV1();

                    decodedAccountEntryV1.Liabilities = Liabilities.Decode(stream);
                    decodedAccountEntryV1.Ext         = AccountEntryV1Ext.Decode(stream);
                    return(decodedAccountEntryV1);
                }
コード例 #2
0
                public static TrustLineEntryV1 Decode(XdrDataInputStream stream)
                {
                    TrustLineEntryV1 decodedTrustLineEntryV1 = new TrustLineEntryV1();

                    decodedTrustLineEntryV1.Liabilities = Liabilities.Decode(stream);
                    decodedTrustLineEntryV1.Ext         = TrustLineEntryV1Ext.Decode(stream);
                    return(decodedTrustLineEntryV1);
                }