oneRain 2021-02-02 14:35:43 +08:00
parent 46fcf052cf
commit bb0a7840ec
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ namespace LeanCloud.Storage {
throw new ArgumentException("key should not start with '_'"); throw new ArgumentException("key should not start with '_'");
} }
if (key == "objectId" || key == "createdAt" || key == "updatedAt" || if (key == "objectId" || key == "createdAt" || key == "updatedAt" ||
key == "className" || key == "ACL") { key == "className") {
throw new ArgumentException($"{key} is reserved by LeanCloud"); throw new ArgumentException($"{key} is reserved by LeanCloud");
} }
LCSetOperation setOp = new LCSetOperation(value); LCSetOperation setOp = new LCSetOperation(value);