SenseNet.ContentRepository.WorkflowNotificationEventArgs.WorkflowNotificationEventArgs C# (CSharp) Метод

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

public WorkflowNotificationEventArgs ( int nodeId, string notificationType, object info ) : System
nodeId int
notificationType string
info object
Результат System
        public WorkflowNotificationEventArgs(int nodeId, string notificationType, object info)
        {
            this.NodeId = nodeId;
            this.NotificationType = notificationType;
            this.Info = info;
        }
    }
WorkflowNotificationEventArgs