/// <summary>
        /// Creates and initializes an new instance.
        /// </summary>
        /// <param name="url">The URL to be handled by the instance.</param>
        /// <returns>The new instance.</returns>
        public static BassWebStreamInputSource Create(string url)
        {
            BassWebStreamInputSource inputSource = new BassWebStreamInputSource(url);

            inputSource.Initialize();
            return(inputSource);
        }
 /// <summary>
 /// Creates and initializes an new instance.
 /// </summary>
 /// <param name="url">The URL to be handled by the instance.</param>
 /// <returns>The new instance.</returns>
 public static BassWebStreamInputSource Create(string url)
 {
   BassWebStreamInputSource inputSource = new BassWebStreamInputSource(url);
   inputSource.Initialize();
   return inputSource;
 }