Achamenes.ID3.Frames.UrlFrame.UrlFrame C# (CSharp) Method

UrlFrame() public method

public UrlFrame ( string url ) : System
url string
return System
        public UrlFrame(string url)
        {
            if(url==null)
            {
                throw new ArgumentNullException("The passed url parameter can not be null.");
            }
            this._url=url;
        }
UrlFrame