Microsoft.JScript.Class.GetFullName C# (CSharp) Method

GetFullName() private method

private GetFullName ( ) : String
return String
      private String GetFullName(){
        String scopeName = ((ActivationObject)this.enclosingScope).GetName();
        if (scopeName == null){
          VsaEngine engine = this.context.document.engine;
          if (engine != null && engine.genStartupClass)
            scopeName = engine.RootNamespace;
        }
        if (scopeName != null)
          return scopeName + "." + this.name;
        else
          return this.name;
      }