ATUL_v1.ATUL.GetQueueMessageByCorrelationID C# (CSharp) Méthode

GetQueueMessageByCorrelationID() private méthode

private GetQueueMessageByCorrelationID ( string queue, string correlationID ) : string
queue string
correlationID string
Résultat string
        public string GetQueueMessageByCorrelationID(string queue, string correlationID)
        {
            string msg = string.Empty;
            AtulBusinessLogic b = new AtulBusinessLogic();
            msg = b.GetQueueMessageByCorrelationID(queue, correlationID);
            return msg;
        }
ATUL