System.Xml.Serialization.XmlSerializationReader.CreateUnknownTypeException C# (CSharp) Method

CreateUnknownTypeException() protected method

protected CreateUnknownTypeException ( XmlQualifiedName type ) : Exception
type XmlQualifiedName
return Exception
        protected Exception CreateUnknownTypeException(XmlQualifiedName type)
        {
            return new InvalidOperationException(SR.Format(SR.XmlUnknownType, type.Name, type.Namespace, CurrentTag()));
        }