Microsoft.Zing.Duplicator.VisitSend C# (CSharp) Méthode

VisitSend() private méthode

private VisitSend ( SendStatement send ) : SendStatement
send SendStatement
Résultat SendStatement
        private SendStatement VisitSend(SendStatement send)
        {
            if (send == null) return null;
            SendStatement result = (SendStatement)send.Clone();
            result.channel = this.VisitExpression(send.channel);
            result.data = this.VisitExpression(send.data);

            return result;
        }