_Assembly.GetFiles Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides COM objects with version-independent access to the GetFiles methods.
Overloads
GetFiles() |
Provides COM objects with version-independent access to the GetFiles() method. |
GetFiles(Boolean) |
Provides COM objects with version-independent access to the GetFiles(Boolean) method. |
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The GetFiles methods get the files in the file table of an assembly manifest.
GetFiles()
Provides COM objects with version-independent access to the GetFiles() method.
public:
cli::array <System::IO::FileStream ^> ^ GetFiles();
public System.IO.FileStream[] GetFiles ();
abstract member GetFiles : unit -> System.IO.FileStream[]
Public Function GetFiles () As FileStream()
Returns
An array of FileStream objects.
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The GetFiles method gets the files in the file table of an assembly manifest.
See also
Applies to
GetFiles(Boolean)
Provides COM objects with version-independent access to the GetFiles(Boolean) method.
public:
cli::array <System::IO::FileStream ^> ^ GetFiles(bool getResourceModules);
public System.IO.FileStream[] GetFiles (bool getResourceModules);
abstract member GetFiles : bool -> System.IO.FileStream[]
Public Function GetFiles (getResourceModules As Boolean) As FileStream()
Parameters
- getResourceModules
- Boolean
true
to include resource modules; otherwise, false
.
Returns
An array of FileStream objects.
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The GetFiles method gets the files in the file table of an assembly manifest, specifying whether to include resource modules.