Delegate PageProviderBase.PropertyValidator
Used to validate that a given property is valid before value is assigned.
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public delegate bool PropertyValidator(string propertyName, string Type, string propertyValue);
Parameters
Type |
Name |
Description |
System.String |
propertyName |
|
System.String |
Type |
|
System.String |
propertyValue |
|
Returns
Type |
Description |
System.Boolean |
|
Constructors
PropertyValidator(Object, IntPtr)
Declaration
public PropertyValidator(object object, IntPtr method)
Parameters
Type |
Name |
Description |
System.Object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(String, String, String, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(string propertyName, string Type, string propertyValue, AsyncCallback callback, object object)
Parameters
Type |
Name |
Description |
System.String |
propertyName |
|
System.String |
Type |
|
System.String |
propertyValue |
|
System.AsyncCallback |
callback |
|
System.Object |
object |
|
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual bool EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Returns
Type |
Description |
System.Boolean |
|
Invoke(String, String, String)
Declaration
public virtual bool Invoke(string propertyName, string Type, string propertyValue)
Parameters
Type |
Name |
Description |
System.String |
propertyName |
|
System.String |
Type |
|
System.String |
propertyValue |
|
Returns
Type |
Description |
System.Boolean |
|
Extension Methods