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

IsCollectionAlreadyHandled() public method

Determines whether the specified collection type is already handled.
public IsCollectionAlreadyHandled ( Type type ) : bool
type System.Type The type.
return bool
            public bool IsCollectionAlreadyHandled(Type type)
            {
                return _collectionTypesAlreadyHandled.Contains(type);
            }