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

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

Removes the sync ignore flags of the given device Ids from the given cmis object.
public static RemoveSyncIgnore ( this obj ) : void
obj this Remote CMIS Object.
Результат void
        public static void RemoveSyncIgnore(this ICmisObject obj, params Guid[] deviceIds) {
            string[] ids = new string[deviceIds.Length];
            for (int i = 0; i < deviceIds.Length; i++) {
                ids[i] = deviceIds[i].ToString().ToLower();
            }
        }