Upravit

Sdílet prostřednictvím


DataSource.SetNamedNodeProperty(XPathNavigator, String, String) Method

Definition

Sets the value of a named property for the specified XML node, which must be a nonattribute node in the main data source.

public:
 abstract void SetNamedNodeProperty(System::Xml::XPath::XPathNavigator ^ target, System::String ^ name, System::String ^ value);
public abstract void SetNamedNodeProperty (System.Xml.XPath.XPathNavigator target, string name, string value);
abstract member SetNamedNodeProperty : System.Xml.XPath.XPathNavigator * string * string -> unit
Public MustOverride Sub SetNamedNodeProperty (target As XPathNavigator, name As String, value As String)

Parameters

target
XPathNavigator

An XPathNavigator object positioned at the XML node corresponding to a nonattribute node in the main data source, for which a named property is to be set.

name
String

The name of the property to be set.

value
String

The value to which the property will be set.

Exceptions

The parameters passed to this method arenot valid. For example, they are of the wrong type or format.

The parameters passed to this method are a null reference (Nothing in Visual Basic).

Remarks

Named properties allow users to associate strings with user-defined properties of XML element nodes in the main data source. The value of a named property can be set by using the SetNamedNodeProperty method. Use the GetNamedNodeProperty(XPathNavigator, String) method to read the value of a named property.

Property values set with the SetNamedNodeProperty method are not saved when the form is saved.

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

This type or member can be accessed from code running in forms opened in Microsoft InfoPath Filler or in a Web browser.

Applies to