Network C#

using System;
using System.IO;
using System.Net.Mail;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Configuration;
using System.Globalization;
using System.Web;
using System.Web.Configuration;
using System.Threading;
using System.Reflection;
using System.Collections;
using System.Xml;
using System.Net;
using System.Web.Caching;
namespace BlogEngine.Core
{
  /// 
  /// Utilities for the entire solution to use.
  /// 

  public static class Utils
  {
    /// Retrieves the subdomain from the specified URL.
    /// 
    /// The URL from which to retrieve the subdomain.
    /// The subdomain if it exist, otherwise null.
    public static string GetSubDomain(Uri url)
    {
      if (url.HostNameType == UriHostNameType.Dns)
      {
        string host = url.Host;
        if (host.Split('.').Length > 2)
        {
          int lastIndex = host.LastIndexOf(".");
          int index = host.LastIndexOf(".", lastIndex - 1);
          return host.Substring(0, index);
        }
      }
      return null;
    }
  }
}