NameValue Class
Represents a name/value pair.
Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)
Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)
[SerializableAttribute] [XmlTypeAttribute("NameValue", Namespace="http://www.microsoft.com/ComputeCluster/")] [ClassInterfaceAttribute(ClassInterfaceType.None)] [ComVisibleAttribute(true)] [GuidAttribute("E04C268B-5073-4b2d-B9A5-6435935D0C70")] public sealed class NameValue : INameValue
/** @attribute SerializableAttribute() */
/** @attribute XmlTypeAttribute("NameValue", Namespace="http://www.microsoft.com/ComputeCluster/") */
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.None) */
/** @attribute ComVisibleAttribute(true) */
/** @attribute GuidAttribute("E04C268B-5073-4b2d-B9A5-6435935D0C70") */
public final class NameValue implements INameValue
SerializableAttribute XmlTypeAttribute("NameValue", Namespace="http://www.microsoft.com/ComputeCluster/") ClassInterfaceAttribute(ClassInterfaceType.None) ComVisibleAttribute(true) GuidAttribute("E04C268B-5073-4b2d-B9A5-6435935D0C70") public final class NameValue implements INameValue
Treat the properties of this class as read-only; do not set the value of these properties.
You should not use this class. Instead, you should use the INameValue interface as shown in the following example:
foreach (INameValue param in cluster.Parameters)
{
Console.WriteLine(param.Name);
}
Community Additions
ADD
Show: