コード例 #1
0
 private DefaultProfile(String region, Credential creden)
 {
     iendpoints          = new InternalEndpointsParser();
     credential          = creden;
     this.regionId       = region;
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #2
0
ファイル: DefaultProfile.cs プロジェクト: yangbg/SS.SMS
 private DefaultProfile(String region, ICredentialProvider icredential)
 {
     this.regionId       = region;
     this.icredential    = icredential;
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #3
0
 private DefaultProfile(String regionId)
 {
     this.locationConfig = new LocationConfig();
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
     this.regionId       = regionId;
 }
コード例 #4
0
 private DefaultProfile(ICredentialProvider icredential)
 {
     this.icredential    = icredential;
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
     this.locationConfig = new LocationConfig();
 }
コード例 #5
0
 private DefaultProfile(string region, ICredentialProvider icredential)
 {
     iendpoints       = new InternalEndpointsParser();
     this.icredential = icredential;
     regionId         = region;
     locationConfig   = new LocationConfig();
     remoteProvider   = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #6
0
 private DefaultProfile(string region, Credential creden)
 {
     iendpoints     = new InternalEndpointsParser();
     remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
     credential     = creden;
     regionId       = region;
     locationConfig = new LocationConfig();
 }
コード例 #7
0
 private DefaultProfile(String region, Credential creden, IEndpointsProvider provider)
 {
     this.iendpoints     = provider;
     this.credential     = creden;
     this.regionId       = region;
     this.locationConfig = new LocationConfig();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #8
0
 private DefaultProfile(ICredentialProvider icredential, String region, FormatType format)
 {
     this.regionId       = region;
     this.AcceptFormat   = format;
     this.icredential    = icredential;
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #9
0
 private DefaultProfile()
 {
     locationConfig = new LocationConfig();
     iendpoints     = new InternalEndpointsParser();
     remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #10
0
 public DefaultProfile(bool mock)
 {
     locationConfig = new LocationConfig();
     iendpoints     = new InternalEndpointsParser();
     remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #11
0
 private DefaultProfile()
 {
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
コード例 #12
0
 public DefaultProfile(bool mock = true)
 {
     this.locationConfig = new LocationConfig();
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }