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

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

Determines if multi filing is supported with the specified session.
public static IsMultiFilingSupported ( this session ) : bool
session this Cmis session.
Результат bool
        public static bool IsMultiFilingSupported(this ISession session) {
            try {
                return session.RepositoryInfo.Capabilities.IsMultifilingSupported == true;
            } catch (NullReferenceException) {
                return false;
            }
        }