Exemple #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="PatchSequencer"/> class.
        /// </summary>
        internal PatchSequencer()
        {
            this.Patches            = new Set <string>(StringComparer.OrdinalIgnoreCase);
            this.TargetProductCodes = new Set <string>(StringComparer.OrdinalIgnoreCase);

            this.action = new GetApplicablePatchesAction(this.GetApplicablePatches);
        }
Exemple #2
0
        /// <summary>
        /// Creates a new instance of the <see cref="PatchSequencer"/> class.
        /// </summary>
        internal PatchSequencer()
        {
            this.Patches = new Set<string>(StringComparer.OrdinalIgnoreCase);
            this.TargetProductCodes = new Set<string>(StringComparer.OrdinalIgnoreCase);

            this.action = new GetApplicablePatchesAction(this.GetApplicablePatches);
        }