System.Runtime.Serialization.DataContractSet.TryGetReferencedCollectionType C# (CSharp) Method

TryGetReferencedCollectionType() private method

private TryGetReferencedCollectionType ( XmlQualifiedName stableName, System.Runtime.Serialization.DataContract dataContract, Type &type ) : bool
stableName System.Xml.XmlQualifiedName
dataContract System.Runtime.Serialization.DataContract
type Type
return bool
        internal bool TryGetReferencedCollectionType(XmlQualifiedName stableName, DataContract dataContract, out Type type)
        {
            return TryGetReferencedType(stableName, dataContract, true/*useReferencedCollectionTypes*/, out type);
        }