PoshCode.Controls.PromptForObjectEventArgs.PromptForObjectEventArgs C# (CSharp) Méthode

PromptForObjectEventArgs() public méthode

public PromptForObjectEventArgs ( string caption, string message, Collection descriptions ) : System
caption string
message string
descriptions Collection
Résultat System
        public PromptForObjectEventArgs(string caption, string message, Collection<FieldDescription> descriptions)
        {
            Caption = caption;
            Message = message;
            Descriptions = descriptions;
            Results = new Dictionary<string, PSObject>();
        }
PromptForObjectEventArgs