Return the fully qualified name of this Operator. This contains the container name, any module names and the name of the operator. This may return null during the init phase (i.e. until the first call to Resume()).

Namespace: StreamBase.SB
Assembly: StreamBase.SB.Client (in StreamBase.SB.Client.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public string FullyQualifiedName { get; }
Public ReadOnly Property FullyQualifiedName As String
	Get
public:
property String^ FullyQualifiedName {
	String^ get ();
}

Return Value

the FQN of the Operator, or null is it hasn't been initialized yet (i.e. before the first call to Resume()).

See Also