public bool IsParentObjectToDelete(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStub theObject)
 {
     return(false);
 }
 public SerializableObjectLayerResult <object[]> LoadDelayedProperties(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStub theObject, string[] props)
 {
     return(ExecuteWithLog(() => Channel.LoadDelayedProperties(clientInfo, dictionary, theObject, props),
                           $" - clientId: {clientInfo.ClientId};  object.ClassName: {theObject.ClassName}; Properties.Length: {props.Length}"));
 }
 public SerializableObjectLayerResult <XPObjectStubCollection> LoadCollectionObjects(IClientInfo clientInfo, XPDictionaryStub dictionary, string refPropertyName, XPObjectStub ownerObject)
 {
     return(ExecuteWithLog(() => Channel.LoadCollectionObjects(clientInfo, dictionary, refPropertyName, ownerObject), $" - {ownerObject.ClassName}.{refPropertyName}"));
 }
Exemplo n.º 4
0
 public bool IsParentObjectToDelete(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStub theObject)
 {
     return(Server.IsParentObjectToDelete(clientInfo, dictionary, theObject));
 }
Exemplo n.º 5
0
 public SerializableObjectLayerResult <object[]> LoadDelayedProperties(IClientInfo clientInfo, XPDictionaryStub dictionary, XPObjectStub theObject, string[] props)
 {
     return(Server.LoadDelayedProperties(clientInfo, dictionary, theObject, props));
 }
Exemplo n.º 6
0
 public SerializableObjectLayerResult <XPObjectStubCollection> LoadCollectionObjects(IClientInfo clientInfo, XPDictionaryStub dictionary, string refPropertyName, XPObjectStub ownerObject)
 {
     return(Server.LoadCollectionObjects(clientInfo, dictionary, refPropertyName, ownerObject));
 }