Achamenes.ID3.Frames.TimeTextFrame.Validate C# (CSharp) Method

Validate() protected method

protected Validate ( string value ) : void
value string
return void
        protected override void Validate(string value)
        {
            if(value.Length>4)
            {
                throw new InvalidFrameValueException(value, "Invalid value specified for Time frame. Maximum length is 4.");
            }
        }