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;
            }
        }