Condividi tramite


IWorkflowCompilerOptionsService.RootNamespace Proprietà

Definizione

Ottiene l'insieme spazio dei nomi radice per il progetto.

public:
 property System::String ^ RootNamespace { System::String ^ get(); };
public string RootNamespace { get; }
member this.RootNamespace : string
Public ReadOnly Property RootNamespace As String

Valore della proprietà

String

Nome dello spazio dei nomi radice.

Esempio

Nell'esempio seguente viene illustrata un'implementazione della proprietà RootNamespace. Questo esempio è tratto dall'esempio SDK Tracking Profile Designer. Per altre informazioni, vedere Esempio di Progettazione profili di rilevamento.

string IWorkflowCompilerOptionsService.RootNamespace
{
    get
    {
        return string.Empty;
    }
}
Public ReadOnly Property RootNamespace() As String Implements IWorkflowCompilerOptionsService.RootNamespace
    Get
        Return String.Empty
    End Get
End Property

Commenti

Questa proprietà viene utilizzata nell'ambiente di compilazione Visual Basic per passare lo spazio dei nomi radice del progetto al compilatore.

Si applica a