Node Class

Contains information about a compute node.

Namespace: Microsoft.ComputeCluster
Assembly: CcpAPI (in ccpapi.dll)

Usage

Syntax

'Declaration
<SerializableAttribute> _
<GuidAttribute("345A7BB3-C249-4c6a-9A72-94569C09A7AF")> _
<XmlTypeAttribute("Node", Namespace:="https://www.microsoft.com/ComputeCluster/")> _
<ClassInterfaceAttribute(ClassInterfaceType.None)> _
<ComVisibleAttribute(True)> _
Public Class Node
    Implements INode
[SerializableAttribute] 
[GuidAttribute("345A7BB3-C249-4c6a-9A72-94569C09A7AF")] 
[XmlTypeAttribute("Node", Namespace="https://www.microsoft.com/ComputeCluster/")] 
[ClassInterfaceAttribute(ClassInterfaceType.None)] 
[ComVisibleAttribute(true)] 
public class Node : INode
[SerializableAttribute] 
[GuidAttribute(L"345A7BB3-C249-4c6a-9A72-94569C09A7AF")] 
[XmlTypeAttribute(L"Node", Namespace=L"https://www.microsoft.com/ComputeCluster/")] 
[ClassInterfaceAttribute(ClassInterfaceType::None)] 
[ComVisibleAttribute(true)] 
public ref class Node : INode
/** @attribute SerializableAttribute() */ 
/** @attribute GuidAttribute("345A7BB3-C249-4c6a-9A72-94569C09A7AF") */ 
/** @attribute XmlTypeAttribute("Node", Namespace="https://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="https://www.microsoft.com/ComputeCluster/") 
ClassInterfaceAttribute(ClassInterfaceType.None) 
ComVisibleAttribute(true) 
public class Node implements INode

Remarks

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);
}

Inheritance Hierarchy

System.Object
  Microsoft.ComputeCluster.Node

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Microsoft Windows Compute Cluster Server 2003, Windows Server 2003, Windows XP

Target Platforms

Microsoft Windows Compute Cluster Server 2003, Windows Server 2003 with Compute Cluster Pack Client Utilities, Windows XP with Compute Cluster Pack Client Utilities

See Also

Reference

Node Members
Microsoft.ComputeCluster Namespace