Achamenes.ID3.Frames.Parsers.UrlFrameParser.ParseUrlFrame C# (CSharp) Method

ParseUrlFrame() protected static method

Returns the URL string encoded in a URL frame.
protected static ParseUrlFrame ( byte data ) : string
data byte Byte array to parse the text frame out of.
return string
        protected static string ParseUrlFrame(byte[] data)
        {
            TextField textField=TextField.CreateTextField(false, EncodingScheme.Ascii);
            textField.Parse(data, 0);
            return textField.Text;
        }
UrlFrameParser