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!

ComponentModelPersister.ParsePropertySet

Parses a single property set statement.

[Visual Basic]
Protected Sub ParsePropertySet( _
   ByVal target() As String, _
   ByVal propname As String, _
   ByVal value As Object _
)
[C#]
protected void ParsePropertySet(
   string[] target,
   string propname,
   object value
);
[C++]
protected: void ParsePropertySet(
   String* target[],
   String* propname,
   Object* value
);
[JScript]
protected function ParsePropertySet(
   target : String[],
   propname : String,
   value : Object
);

Parameters

target
Name of the object that the property is getting set on.
propname
Name of property to set
value
Value/Expression to set the property to.

See Also

ComponentModelPersister Class | ComponentModelPersister Members | System.ComponentModel.Design Namespace