CmisSync.Lib.Cmis.ConvenienceExtenders.CmisConvenienceExtenders.IsGetDescendantsSupported C# (CSharp) Метод

IsGetDescendantsSupported() публичный статический Метод

Determines if getDescendants calls are supported the specified session.
public static IsGetDescendantsSupported ( this session ) : bool
session this Cmis session.
Результат bool
        public static bool IsGetDescendantsSupported(this ISession session) {
            try {
                return session.RepositoryInfo.Capabilities.IsGetDescendantsSupported == true;
            } catch (NullReferenceException) {
                return false;
            }
        }