コード例 #1
0
        /// <summary>
        /// Returns whether or not the type is a structured or structured collection type.
        /// </summary>
        /// <param name="edmType">The type to check.</param>
        /// <returns>Whether or not the type is a structured or structured collection type.</returns>
        internal static bool IsStructuredOrStructuredCollectionType(this IEdmType edmType)
        {
            IEdmStructuredType structuredType;

            return(edmType.IsStructuredOrStructuredCollectionType(out structuredType));
        }