FindValueActivity.IDynamicPropertyTypeProvider.GetPropertyType Method
Returns the access type of the specified property.
Namespace: Microsoft.SharePoint.WorkflowActions.WithKey
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Private Function GetPropertyType ( _
serviceProvider As IServiceProvider, _
propertyName As String _
) As Type Implements IDynamicPropertyTypeProvider.GetPropertyType
'Usage
Dim instance As FindValueActivity
Dim serviceProvider As IServiceProvider
Dim propertyName As String
Dim returnValue As Type
returnValue = CType(instance, IDynamicPropertyTypeProvider).GetPropertyType(serviceProvider, _
propertyName)
TypeIDynamicPropertyTypeProvider.GetPropertyType(
IServiceProvider serviceProvider,
string propertyName
)
Parameters
serviceProvider
Type: System.IServiceProviderAn object that can provides access to design-time services.
propertyName
Type: System.StringThe name of the property.
Return Value
Type: System.Type
The type of the specified property.
Implements
IDynamicPropertyTypeProvider.GetPropertyType(IServiceProvider, String)
Remarks
This method is used at compile time to validate whether the properties are correctly bound to one other. Without this interface, the information is inferred directly from the get and set accessors of the property.