IMvcRazorHost.GenerateCode(String, Stream) 方法

定义

分析并生成由 inputStream表示的 Razor 文件的内容。

public:
 Microsoft::AspNetCore::Razor::CodeGenerators::GeneratorResults ^ GenerateCode(System::String ^ rootRelativePath, System::IO::Stream ^ inputStream);
public Microsoft.AspNetCore.Razor.CodeGenerators.GeneratorResults GenerateCode (string rootRelativePath, System.IO.Stream inputStream);
abstract member GenerateCode : string * System.IO.Stream -> Microsoft.AspNetCore.Razor.CodeGenerators.GeneratorResults
Public Function GenerateCode (rootRelativePath As String, inputStream As Stream) As GeneratorResults

参数

rootRelativePath
String

相对于应用程序根目录的路径。 用于生成行杂注并计算生成的类型的类名。

inputStream
Stream

一个 Stream ,它表示 Razor 内容。

返回

表示 GeneratorResults 代码生成结果的实例。

适用于