Click or drag to resize

HpsvObject Constructor (String[])

Creates a new HpsvObject with predefined properties

Namespace:  HP.SV.DotNetRuleApi
Assembly:  HP.SV.DotNetRuleApi (in HP.SV.DotNetRuleApi.dll) Version: 5.6.0.9999-localBuild
Syntax
C#
public HpsvObject(
	string[] propertyNames
)

Parameters

propertyNames
Type:System.String[]
Array of property names the object to include
Examples
var fromObject = new HpsvObject(new[]{"from"});

fromObject["from"] = "Sender";

someOtherObject["sayHelloWorldFrom"] = fromObject;

See Also