1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
\name{askForPassword}
\alias{askForPassword}
\title{
Ask the user for a password interactively
}
\description{
Ask the user for a password interactively.
}
\note{
The \code{askForPassword} function was added in version 0.99.853 of RStudio.
}
\usage{
askForPassword(prompt)
}
\arguments{
\item{prompt}{Single element character vector containing the prompt to be displayed}
}
\details{
RStudio also sets the global \code{askpass} option to the \code{rstudioapi::askForPassword} function so that it can be invoked in a front-end independent manner.
}
\examples{
\dontrun{
rstudioapi::askForPassword("Please enter your password")
}
}
|