Delegate EntityDetailsHelperModified<TParent, TChild>
Delegate declaring function for handling modifications in the EntityDetailsHelper<TParent, TChild>.
Namespace: SuperOffice.CRM.Entities
Assembly: SoDataBase.dll
Syntax
public delegate void EntityDetailsHelperModified<TParent, TChild>(EntityDetailsHelper<TParent, TChild> source, TParent parent, TChild item)
where TParent : class, INestedPersist where TChild : class, INestedPersist;
Parameters
Type | Name | Description |
---|---|---|
EntityDetailsHelper<TParent, TChild> | source | Instance of |
TParent | parent | Parent object owning the children. |
TChild | item | Item modified. |
Type Parameters
Name | Description |
---|---|
TParent | Type of parent, normally a row or entity. |
TChild | Type of child, normally a row or entity. |
Constructors
EntityDetailsHelperModified(Object, IntPtr)
Declaration
public EntityDetailsHelperModified(object object, IntPtr method)
Parameters
Type | Name | Description |
---|---|---|
Object | object | |
IntPtr | method |
Methods
BeginInvoke(EntityDetailsHelper<TParent, TChild>, TParent, TChild, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(EntityDetailsHelper<TParent, TChild> source, TParent parent, TChild item, AsyncCallback callback, object object)
Parameters
Type | Name | Description |
---|---|---|
EntityDetailsHelper<TParent, TChild> | source | |
TParent | parent | |
TChild | item | |
AsyncCallback | callback | |
Object | object |
Returns
Type | Description |
---|---|
IAsyncResult |
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type | Name | Description |
---|---|---|
IAsyncResult | result |
Invoke(EntityDetailsHelper<TParent, TChild>, TParent, TChild)
Declaration
public virtual void Invoke(EntityDetailsHelper<TParent, TChild> source, TParent parent, TChild item)
Parameters
Type | Name | Description |
---|---|---|
EntityDetailsHelper<TParent, TChild> | source | |
TParent | parent | |
TChild | item |
Extension Methods
EnumUtil.MapEnums<From, To>(From)