System.Xml.Serialization.CodeGeneratorConversionException.CodeGeneratorConversionException C# (CSharp) Method

CodeGeneratorConversionException() public method

public CodeGeneratorConversionException ( Type sourceType, Type targetType, bool isAddress, string reason ) : System
sourceType System.Type
targetType System.Type
isAddress bool
reason string
return System
        public CodeGeneratorConversionException(Type sourceType, Type targetType, bool isAddress, string reason)
            : base()
        {
            _sourceType = sourceType;
            _targetType = targetType;
            _isAddress = isAddress;
            _reason = reason;
        }
    }
CodeGeneratorConversionException