コード例 #1
0
        private void InitializationCredentialManager(Uri targetUri)
        {
            _credentialManager = new VcapCredentialManager(targetUri, _stableDataStorage);

            var info = GetInfo();

            _credentialManager.SetLoginUri(info.AuthorizationUrl);
        }
コード例 #2
0
 protected BaseProvider(VcapCredentialManager credentialManager)
     : this(credentialManager, false, true)
 {
 }
コード例 #3
0
 protected BaseProvider(VcapCredentialManager credentialManager, bool isLogin, bool isAuthentication)
 {
     CredentialManager = credentialManager;
     VcapRequest       = new VcapRequest(CredentialManager, isLogin, isAuthentication);
 }
コード例 #4
0
 public OrganizationProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #5
0
 public StackProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #6
0
 public InfoProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #7
0
 public DomainProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #8
0
 public ServiceProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #9
0
 public RouteProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #10
0
 public UserProvider(VcapCredentialManager credentialManager, bool isLogin = false, bool isAuthentication = true)
     : base(credentialManager, isLogin, isAuthentication)
 {
 }
コード例 #11
0
 public VcapRequest(VcapCredentialManager credentialManager, bool isLogin, bool isAuthentication)
 {
     _credentialManager = credentialManager;
     _client            = BuildClient(isLogin, isAuthentication);
 }
コード例 #12
0
 public EventProvider(VcapCredentialManager credentialManager)
     : base(credentialManager)
 {
 }
コード例 #13
0
 public ApplicationProvider(VcapCredentialManager credentialManager, IStableDataStorage stableDataStorage)
     : this(credentialManager)
 {
     StableDataStorage = stableDataStorage;
 }
コード例 #14
0
 public ApplicationProvider(VcapCredentialManager credentialManager) :
     base(credentialManager)
 {
 }