return this Variable Attributes set as an encoded string.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Function getEncodedStr() As String
C#
public string getEncodedStr()
C++
public:
 String getEncodedStr() sealed 
J#
public string getEncodedStr()
JScript
public  function getEncodedStr() : String

Return Value

the encoded string as described above.

Remarks

This encodes all of the attributes in this Variable Attributes set into a single String value and returns that value. The encoded string has the format:

(zero length string if no attributes)

OR

<attr-name>:<attr-value>[;<attr-name>:<attr-value>]*

where attr-name is the attribute name and attr-value is the attribute value with all occurences of ';' changed to ';;'. Names appear in the order they were originally added to this Variable Attributes set.

If there is some error generating the encoded value for an attribute that attribute is simply skipped.

See Also