Node Class
Contains information about a compute node.
Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)
Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)
[SerializableAttribute] [GuidAttribute("345A7BB3-C249-4c6a-9A72-94569C09A7AF")] [XmlTypeAttribute("Node", Namespace="http://www.microsoft.com/ComputeCluster/")] [ClassInterfaceAttribute(ClassInterfaceType.None)] [ComVisibleAttribute(true)] public class Node : INode
/** @attribute SerializableAttribute() */
/** @attribute GuidAttribute("345A7BB3-C249-4c6a-9A72-94569C09A7AF") */
/** @attribute XmlTypeAttribute("Node", Namespace="http://www.microsoft.com/ComputeCluster/") */
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.None) */
/** @attribute ComVisibleAttribute(true) */
public class Node implements INode
SerializableAttribute GuidAttribute("345A7BB3-C249-4c6a-9A72-94569C09A7AF") XmlTypeAttribute("Node", Namespace="http://www.microsoft.com/ComputeCluster/") ClassInterfaceAttribute(ClassInterfaceType.None) ComVisibleAttribute(true) public class Node implements INode
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 INode interface as shown in the following example:
foreach (INode node in cluster.ComputeNodes)
{
Console.WriteLine(node.Name);
}
Community Additions
ADD
Show: