Catel.Runtime.Serialization.Xml.DataContractSerializerFactory.XmlSerializerTypeInfo.IsTypeAlreadyHandled C# (CSharp) Method

IsTypeAlreadyHandled() public method

Determines whether the specified type is already handled, which doesn't mean that it is also a known type. It means that the type has already been inspected once.
public IsTypeAlreadyHandled ( Type type ) : bool
type System.Type The type.
return bool
            public bool IsTypeAlreadyHandled(Type type)
            {
                return _typesAlreadyHandled.Contains(type);
            }