NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IValueProvider.ProvideExpression

Creates a new expression that represents the property value for the specified component.

[Visual Basic]
Function ProvideExpression( _
   ByVal component As Object, _
   ByVal propertyName As String, _
   ByVal value As Object _
) As Object
[C#]
object ProvideExpression(
   object component,
   string propertyName,
   object value
);
[C++]
Object* ProvideExpression(
   Object* component,
   String* propertyName,
   Object* value
) = 0;
[JScript]
function ProvideExpression(
   component : Object,
   propertyName : String,
   value : Object
) : Object;

Parameters

component
The component whose property is being persisted.
propertyName
The name of the property that is being persisted.
value
The value of the property that is being persisted.

Return Value

The new expression.

See Also

IValueProvider Interface | IValueProvider Members | System.ComponentModel.Design Namespace