Litle.Sdk.transactionRequest.Serialize C# (CSharp) Method

Serialize() public method

public Serialize ( ) : string
return string
        public virtual string Serialize()
        {
            throw new NotImplementedException();
        }

Usage Example

コード例 #1
0
        private string saveElement(litleFile litleFile, litleTime litleTime, string filePath, transactionRequest element)
        {
            string fPath;
            fPath = litleFile.createRandomFile(requestDirectory, Path.GetFileName(filePath), "_temp_batchRequest.xml", litleTime);

            litleFile.AppendLineToFile(fPath, element.Serialize());

            return fPath;
        }
transactionRequest