System.Xml.Serialization.CodeGeneratorConversionException.CodeGeneratorConversionException C# (CSharp) Méthode

CodeGeneratorConversionException() public méthode

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