示例#1
0
 public UriServiceInfo(string id, string uriString, bool urlEncodedCredentials = false)
     : base(id)
 {
     Info = new UriInfo(uriString, urlEncodedCredentials);
 }
示例#2
0
 public UriServiceInfo(string id, string scheme, string host, int port, string username, string password, string path)
     : base(id)
 {
     Info = new UriInfo(scheme, host, port, username, password, path);
 }
示例#3
0
 public UriServiceInfo(string id, string uriString, string username, string password)
     : base(id)
 {
     Info = new UriInfo(uriString, username, password);
 }