/// <summary>
        /// Reload the <see cref="ProcessHistory" /> with the specified <see cref="T:Tridion.ContentManager.CoreService.Client.ProcessHistoryData" />
        /// </summary>
        /// <param name="processHistoryData"><see cref="T:Tridion.ContentManager.CoreService.Client.ProcessHistoryData" /></param>
        protected void Reload(ProcessHistoryData processHistoryData)
        {
            if (processHistoryData == null)
                throw new ArgumentNullException("processHistoryData");

            mProcessHistoryData = processHistoryData;
            base.Reload(processHistoryData);
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="ProcessHistory"/> class.
        /// </summary>
        /// <param name="client"><see cref="T:TcmCoreService.Client" /></param>
        /// <param name="processHistoryData"><see cref="T:Tridion.ContentManager.CoreService.Client.ProcessHistoryData" /></param>
        protected ProcessHistory(Client client, ProcessHistoryData processHistoryData)
            : base(client, processHistoryData)
        {
            if (processHistoryData == null)
                throw new ArgumentNullException("processHistoryData");

            mProcessHistoryData = processHistoryData;
        }
Beispiel #3
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ProcessHistory"/> class.
        /// </summary>
        /// <param name="client"><see cref="T:TcmCoreService.Client" /></param>
        /// <param name="processHistoryData"><see cref="T:Tridion.ContentManager.CoreService.Client.ProcessHistoryData" /></param>
        protected ProcessHistory(Client client, ProcessHistoryData processHistoryData) : base(client, processHistoryData)
        {
            if (processHistoryData == null)
            {
                throw new ArgumentNullException("processHistoryData");
            }

            mProcessHistoryData = processHistoryData;
        }
Beispiel #4
0
        /// <summary>
        /// Reload the <see cref="ProcessHistory" /> with the specified <see cref="T:Tridion.ContentManager.CoreService.Client.ProcessHistoryData" />
        /// </summary>
        /// <param name="processHistoryData"><see cref="T:Tridion.ContentManager.CoreService.Client.ProcessHistoryData" /></param>
        protected void Reload(ProcessHistoryData processHistoryData)
        {
            if (processHistoryData == null)
            {
                throw new ArgumentNullException("processHistoryData");
            }

            mProcessHistoryData = processHistoryData;
            base.Reload(processHistoryData);
        }