AssemblyBuilder.GetFile(String) Метод
Определение
Возвращает объект FileStream для указанного файла из таблицы файлов манифеста данной сборки.Gets a FileStream for the specified file in the file table of the manifest of this assembly.
public:
override System::IO::FileStream ^ GetFile(System::String ^ name);
public override System.IO.FileStream GetFile (string name);
override this.GetFile : string -> System.IO.FileStream
Public Overrides Function GetFile (name As String) As FileStream
Параметры
- name
- String
Имя указанного файла.The name of the specified file.
Возвращаемое значение
FileStream для указанного файла или null
, если файл не найден.A FileStream for the specified file, or null
, if the file is not found.
Исключения
В настоящее время этот метод не поддерживается.This method is not currently supported.
У вызывающего объекта отсутствует необходимое разрешение.The caller does not have the required permission.
Комментарии
name
не должен включать путь к файлу.name
should not include the path to the file.