Microsoft.R.Host.Client.RBeforeRequestEventArgs.RBeforeRequestEventArgs C# (CSharp) Method

RBeforeRequestEventArgs() public method

public RBeforeRequestEventArgs ( IReadOnlyList contexts, string prompt, int maxLength, bool addToHistoty ) : System
contexts IReadOnlyList
prompt string
maxLength int
addToHistoty bool
return System
        public RBeforeRequestEventArgs(IReadOnlyList<IRContext> contexts, string prompt, int maxLength, bool addToHistoty) {
            Contexts = contexts;
            Prompt = prompt;
            MaxLength = maxLength;
            AddToHistoty = addToHistoty;
        }
    }
RBeforeRequestEventArgs