IWorkflowCompilerOptionsService.RootNamespace Property
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.
Gets the root namespace set for the project.
public:
property System::String ^ RootNamespace { System::String ^ get(); };
public string RootNamespace { get; }
member this.RootNamespace : string
Public ReadOnly Property RootNamespace As String
Property Value
The name of the root namespace.
Examples
The following example shows an implementation of the RootNamespace
property. This example is from the Tracking Profile Designer SDK sample. For more information, see Tracking Profile Designer Sample.
string IWorkflowCompilerOptionsService.RootNamespace
{
get
{
return string.Empty;
}
}
Public ReadOnly Property RootNamespace() As String Implements IWorkflowCompilerOptionsService.RootNamespace
Get
Return String.Empty
End Get
End Property
Remarks
This property is used in Visual Basic compilation environment to pass the root namespace of the project to the compiler.