示例#1
0
 /// <summary>
 /// Initializes a new instance of NoFrameWriterProvidedException.
 /// </summary>
 /// <param name="frame">The frame that did not support the write operation.</param>
 /// <param name="version">The ID3 v2 major version of the tag in which the frame was to be written.</param>
 /// <param name="message">The error message that explains the reason for the exception.</param>
 /// <param name="inner">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
 public NoFrameWriterProvidedException(Frames.Frame frame, ID3v2MajorVersion version, string message, Exception inner) : base(message, inner)
 {
     this._frame   = frame;
     this._version = version;
 }
示例#2
0
        /// <param name="frameID">The ID of the unrecognized frame.</param>


        /// <summary>
        /// Initializes a new instance of NoFrameWriterProvidedException.
        /// </summary>
        /// <param name="frame">The frame that did not support the write operation.</param>
        /// <param name="version">The ID3 v2 major version of the tag in which the frame was to be written.</param>
        public NoFrameWriterProvidedException(Frames.Frame frame, ID3v2MajorVersion version)
        {
            this._frame   = frame;
            this._version = version;
        }