Jaa


PhysicalDirectoryContents Constructors

Definition

Overloads

Name Description
PhysicalDirectoryContents(String)

Initializes a new instance of the PhysicalDirectoryContents class.

PhysicalDirectoryContents(String, ExclusionFilters)

Initializes a new instance of the PhysicalDirectoryContents class.

PhysicalDirectoryContents(String)

Source:
PhysicalDirectoryContents.cs
Source:
PhysicalDirectoryContents.cs
Source:
PhysicalDirectoryContents.cs
Source:
PhysicalDirectoryContents.cs

Initializes a new instance of the PhysicalDirectoryContents class.

public:
 PhysicalDirectoryContents(System::String ^ directory);
public PhysicalDirectoryContents(string directory);
new Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents : string -> Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents
Public Sub New (directory As String)

Parameters

directory
String

The directory to represent.

Remarks

This API supports the .NET infrastructure and is not intended to be used directly from your code.

Applies to

PhysicalDirectoryContents(String, ExclusionFilters)

Source:
PhysicalDirectoryContents.cs
Source:
PhysicalDirectoryContents.cs
Source:
PhysicalDirectoryContents.cs
Source:
PhysicalDirectoryContents.cs

Initializes a new instance of the PhysicalDirectoryContents class.

public:
 PhysicalDirectoryContents(System::String ^ directory, Microsoft::Extensions::FileProviders::Physical::ExclusionFilters filters);
public PhysicalDirectoryContents(string directory, Microsoft.Extensions.FileProviders.Physical.ExclusionFilters filters);
new Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents : string * Microsoft.Extensions.FileProviders.Physical.ExclusionFilters -> Microsoft.Extensions.FileProviders.Internal.PhysicalDirectoryContents
Public Sub New (directory As String, filters As ExclusionFilters)

Parameters

directory
String

The directory to represent.

filters
ExclusionFilters

A bitwise combination of the enumeration values that specifies which files or directories are excluded from enumeration.

Remarks

This API supports the .NET infrastructure and is not intended to be used directly from your code.

Applies to