Share via


NodeFile Constructors

Definition

Overloads

NodeFile()

Initializes a new instance of the NodeFile class.

NodeFile(String, String, Nullable<Boolean>, FileProperties)

Initializes a new instance of the NodeFile class.

NodeFile()

Source:
NodeFile.cs

Initializes a new instance of the NodeFile class.

public NodeFile ();
Public Sub New ()

Applies to

NodeFile(String, String, Nullable<Boolean>, FileProperties)

Source:
NodeFile.cs

Initializes a new instance of the NodeFile class.

public NodeFile (string name = default, string url = default, bool? isDirectory = default, Microsoft.Azure.Batch.Protocol.Models.FileProperties properties = default);
new Microsoft.Azure.Batch.Protocol.Models.NodeFile : string * string * Nullable<bool> * Microsoft.Azure.Batch.Protocol.Models.FileProperties -> Microsoft.Azure.Batch.Protocol.Models.NodeFile
Public Sub New (Optional name As String = Nothing, Optional url As String = Nothing, Optional isDirectory As Nullable(Of Boolean) = Nothing, Optional properties As FileProperties = Nothing)

Parameters

name
String

The file path.

url
String

The URL of the file.

isDirectory
Nullable<Boolean>

Whether the object represents a directory.

properties
FileProperties

The file properties.

Applies to