TransactionalNodeService.Proxy.Universal.Soap.TransactionFramework.InProcessTransactionResponse.Add C# (CSharp) Метод

Add() публичный Метод

public Add ( InProcessTransactionResponse response ) : void
response InProcessTransactionResponse
Результат 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