コード例 #1
0
 /// <summary>
 /// Add Url to List
 /// </summary>
 /// <param name="item">
 /// The item.
 /// </param>
 /// <returns>
 /// The <see cref="int"/>.
 /// </returns>
 public int Add(UrlLocation item)
 {
     return(this.map.Add(item));
 }
コード例 #2
0
ファイル: MozuUrl.cs プロジェクト: eileenzhuang1/mozu-dotnet
		public MozuUrl(string url, UrlLocation location, bool useSSL)
		{
			Url = url.ToLower();
			Location = location;
            UseSSL = useSSL;
		}
コード例 #3
0
 public MozuUrl(string url, UrlLocation location, bool useSSL)
 {
     Url      = url.ToLower();
     Location = location;
     UseSSL   = useSSL;
 }