TransactionalNodeService.Proxy.Universal.Soap.TransactionFramework.InProcessTransactionResponse.Add C# (CSharp) Method

Add() public method

public Add ( InProcessTransactionResponse response ) : void
response InProcessTransactionResponse
return void
        public void Add(InProcessTransactionResponse response)
        {
            if (response.Nodes.Count > 0)
            {
                Nodes.AddRange(response.Nodes);
            }

            if (response.Relationships.Count > 0)
            {
                Relationships.AddRange(response.Relationships);
            }

            if (response.Metadata.Count > 0)
            {
                Metadata.AddRange(response.Metadata);
            }
        }
InProcessTransactionResponse