public CommitObjectStubsResult[] CommitObjects(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStubCollection objectsForDelete, XPObjectStubCollection objectsForSave, LockingOption lockingOption)
 {
     return(ExecuteWithLog(
                () => Channel.CommitObjects(clientInfo, dictionary, objectsForDelete, objectsForSave, lockingOption),
                $" - ClientId: { clientInfo.ClientId }; objectsForDelete.Count: {objectsForDelete.Count}; objectsForSave.Count: {objectsForSave.Count}; lockingOption: {lockingOption.ToString()}"));
 }
Exemplo n.º 2
0
 public SerializableObjectLayerResult <object[]> LoadDelayedProperties(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStubCollection objects, string property)
 {
     return(Server.LoadDelayedProperties(clientInfo, dictionary, objects, property));
 }
 public SerializableObjectLayerResult <object[]> LoadDelayedProperties(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStubCollection objects, string property)
 {
     return(ExecuteWithLog(() => Channel.LoadDelayedProperties(clientInfo, dictionary, objects, property),
                           $" - clientId: {clientInfo.ClientId};  objects.Count: {objects.Count}; propName: {property}"));
 }
Exemplo n.º 4
0
 public CommitObjectStubsResult[] CommitObjects(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStubCollection objectsForDelete, XPObjectStubCollection objectsForSave, LockingOption lockingOption)
 {
     return(Server.CommitObjects(clientInfo, dictionary, objectsForDelete, objectsForSave, lockingOption));
 }