NameValueCollection Class
Represents a collection of name/value pairs.
Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)
Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)
[SerializableAttribute] [GuidAttribute("4260DE34-014D-4ea1-9E7F-95D5567E3EAA")] [XmlTypeAttribute("NameValueCollection", Namespace="http://www.microsoft.com/ComputeCluster/")] [ClassInterfaceAttribute(ClassInterfaceType.None)] [ComVisibleAttribute(true)] public sealed class NameValueCollection : INameValueCollection, IEnumerable
/** @attribute SerializableAttribute() */
/** @attribute GuidAttribute("4260DE34-014D-4ea1-9E7F-95D5567E3EAA") */
/** @attribute XmlTypeAttribute("NameValueCollection", Namespace="http://www.microsoft.com/ComputeCluster/") */
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.None) */
/** @attribute ComVisibleAttribute(true) */
public final class NameValueCollection implements INameValueCollection, IEnumerable
SerializableAttribute GuidAttribute("4260DE34-014D-4ea1-9E7F-95D5567E3EAA") XmlTypeAttribute("NameValueCollection", Namespace="http://www.microsoft.com/ComputeCluster/") ClassInterfaceAttribute(ClassInterfaceType.None) ComVisibleAttribute(true) public final class NameValueCollection implements INameValueCollection, IEnumerable
Collections returned by the CCP API are read-only. CCP uses the methods that modify the collection.
You should not use this class. Instead, you should use the INameValueCollection interface as shown in the following example:
INameValueCollection params = cluster.Parameters;
Community Additions
ADD
Show: