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!

CodePersister.CreateExpressionFromPropertyValue

Creates an expression value object from a PropertyValue. This will perform a deep scan on the PropertyValue and convert any nested object creates, array creates, name references, or constants.

For more information on values and expressions see the ICodeSourceFile documentation.

[Visual Basic]
Protected Function CreateExpressionFromPropertyValue( _
   ByVal value As PropertyValue _
) As Object
[C#]
protected object CreateExpressionFromPropertyValue(
   PropertyValue value
);
[C++]
protected: Object* CreateExpressionFromPropertyValue(
   PropertyValue* value
);
[JScript]
protected function CreateExpressionFromPropertyValue(
   value : PropertyValue
) : Object;

Parameters

value
PropertyValue to convert.

See Also

CodePersister Class | CodePersister Members | System.ComponentModel.Design Namespace | ICodeSourceFile