/// <summary>
 /// Returns the section property name assigned.
 /// This item is None if there is no section property assigned to the element/object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <returns>System.String.</returns>
 /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception>
 protected string getSectionName(IObservableSection app)
 {
     _sectionName = app.GetSection(Name);
     return(_sectionName);
 }
Beispiel #2
0
 /// <summary>
 /// Returns the section property name assigned.
 /// This item is None if there is no section property assigned to the element/object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <returns>System.String.</returns>
 /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception>
 protected string getSection(IObservableSection app)
 {
     return(app.GetSection(Name));
 }