DataAccessFramework.ParameterTooLongException.ParameterTooLongException C# (CSharp) Method

ParameterTooLongException() protected method

protected ParameterTooLongException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System
        protected ParameterTooLongException(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            ParameterName = info.GetString("parameterName");
            MaxLength = info.GetInt32("maxLength");
            ActualLength = info.GetInt32("actualLength");
        }

Same methods

ParameterTooLongException::ParameterTooLongException ( string parameterName, int maxLength, int actualLength ) : System