コード例 #1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="PackagingUpdateEventArgs"/> class.
 /// </summary>
 /// <param name="operation">The type of the Packaging Operation for which the update is being issued.</param>
 /// <param name="type">The type of update message.</param>
 /// <param name="message">The update message.</param>
 public PackagingUpdateEventArgs(PackagingOperationType operation, PackagingUpdateType type, string message)
     : base()
 {
     Operation = operation;
     Type      = type;
     Message   = message;
 }
コード例 #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="PackagingOperation"/> class.
 /// </summary>
 /// <param name="type">The type of the Packaging Operation being initialized.</param>
 public PackagingOperation(PackagingOperationType type)
 {
     Type = type;
 }