SaaS CMS has officially launched! Learn more now.

Class GetPropertyDelegate

The delegate that will be used when fetching properties from a PropertyDataCollection.

Inheritance
System.Object
GetPropertyDelegate
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public sealed class GetPropertyDelegate : MulticastDelegate
Remarks

It's possible to write your own GetPropertyDelegate and specify that is should be used by setting the GetHandler property of the PropertyDataCollection.

Constructors

GetPropertyDelegate(Object, IntPtr)

Declaration
public GetPropertyDelegate(object object, IntPtr method)
Parameters
Type Name Description
System.Object object
System.IntPtr method

Methods

BeginInvoke(String, PropertyDataCollection, AsyncCallback, Object)

Declaration
public virtual IAsyncResult BeginInvoke(string name, PropertyDataCollection properties, AsyncCallback callback, object object)
Parameters
Type Name Description
System.String name
PropertyDataCollection properties
System.AsyncCallback callback
System.Object object
Returns
Type Description
System.IAsyncResult

EndInvoke(IAsyncResult)

Declaration
public virtual PropertyData EndInvoke(IAsyncResult result)
Parameters
Type Name Description
System.IAsyncResult result
Returns
Type Description
PropertyData

Invoke(String, PropertyDataCollection)

Declaration
public virtual PropertyData Invoke(string name, PropertyDataCollection properties)
Parameters
Type Name Description
System.String name
PropertyDataCollection properties
Returns
Type Description
PropertyData

Extension Methods