IWorkflowCompilerOptionsService.Language 属性
定义
获取在编译工作流时环境使用的编程语言,例如 Visual Studio。Gets the programming language used by the environment, such as Visual Studio, when compiling the workflow.
public:
property System::String ^ Language { System::String ^ get(); };
public string Language { get; }
member this.Language : string
Public ReadOnly Property Language As String
属性值
开发环境使用的编程语言的名称。The name of the programming language used by the development environment.
示例
下面的示例演示 Language 属性的实现。The following example shows an implementation of the Language property. 此示例摘自“跟踪配置文件设计器”SDK 示例。This example is from the Tracking Profile Designer SDK sample. 有关详细信息,请参阅 跟踪配置文件设计器示例。For more information, see Tracking Profile Designer Sample.
string IWorkflowCompilerOptionsService.Language
{
get
{
return "CSharp";
}
}
Public ReadOnly Property Language() As String Implements IWorkflowCompilerOptionsService.Language
Get
Return "VisualBasic"
End Get
End Property