Example #1
0
 protected RestApiProxyBase(IRestApiContext context, string managedPath)
     : this(context, managedPath, null)
 {
 }
Example #2
0
 protected RestApiProxyBase(IRestApiContext context, string managedPath, string requiredScheme)
 {
     Context             = context;
     this.managedPath    = managedPath;
     this.requiredScheme = requiredScheme;
 }
 public RestAuthenticator(IRestApiContext context, string appAlias)
     : base(context, $"authentication/api/v1/sessions/{appAlias}/", "https")
 {
 }