blob: 8c6b92b444d219df159bdaecc8b6675f0eb65b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Web.Razor.Generator;
using System.Web.Razor.Parser;
using Microsoft.VisualBasic;
namespace System.Web.Razor
{
/// <summary>
/// Defines the Visual Basic Code Language for Razor
/// </summary>
public class VBRazorCodeLanguage : RazorCodeLanguage
{
private const string VBLanguageName = "vb";
/// <summary>
/// Returns the name of the language: "vb"
/// </summary>
public override string LanguageName
{
get { return VBLanguageName; }
}
/// <summary>
/// Returns the type of the CodeDOM provider for this language
/// </summary>
public override Type CodeDomProviderType
{
get { return typeof(VBCodeProvider); }
}
/// <summary>
/// Constructs a new instance of the code parser for this language
/// </summary>
public override ParserBase CreateCodeParser()
{
return new VBCodeParser();
}
/// <summary>
/// Constructs a new instance of the code generator for this language with the specified settings
/// </summary>
public override RazorCodeGenerator CreateCodeGenerator(string className, string rootNamespaceName, string sourceFileName, RazorEngineHost host)
{
return new VBRazorCodeGenerator(className, rootNamespaceName, sourceFileName, host);
}
}
}
|