public DropboxFilesForm(OAuth2Info oauth, string path, DropboxAccountInfo accountInfo) { InitializeComponent(); Icon = Resources.Dropbox; dropbox = new Dropbox(oauth); dropboxAccountInfo = accountInfo; ilm = new ImageListManager(lvDropboxFiles); if (path != null) { Shown += (sender, e) => OpenDirectory(path); } }
public GoogleURLShortener(OAuth2Info oauth) { UploadMethod = AccountType.User; AuthInfo = oauth; }
public GoogleURLShortener(AccountType uploadMethod, string anonymousKey, OAuth2Info oauth) { UploadMethod = uploadMethod; AnonymousKey = anonymousKey; AuthInfo = oauth; }
public Picasa(OAuth2Info oauth) { AuthInfo = oauth; }
public BitlyURLShortener(OAuth2Info oauth) { AuthInfo = oauth; }
public Gist(bool publishPublic, OAuth2Info oAuthInfos) { this.publishPublic = publishPublic; AuthInfo = oAuthInfos; }
public GoogleDrive(OAuth2Info oauth) { AuthInfo = oauth; }
public Gist(OAuth2Info oAuthInfos) : this(false, oAuthInfos) { }
public Imgur(OAuth2Info oauth) { AuthInfo = oauth; }
public Minus(MinusOptions config, OAuth2Info auth) { Config = config; AuthInfo = auth; }
public Hubic(OAuth2Info oauth, HubicOpenstackAuthInfo osauth) { AuthInfo = oauth; HubicOpenstackAuthInfo = osauth; }
public OneDrive(OAuth2Info authInfo) { AuthInfo = authInfo; }
public Box(OAuth2Info oauth) { AuthInfo = oauth; FolderID = "0"; Share = true; }
public Dropbox(OAuth2Info oauth, DropboxAccountInfo accountInfo) : this(oauth) { AccountInfo = accountInfo; }
public Dropbox(OAuth2Info oauth) { AuthInfo = oauth; }