Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/09 14:46:57 (16 years ago)
Author:
kgrading
Message:

added licence information and comments (#467)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Core/ConfigurationManager/ConfigManager.cs

    r1119 r1132  
    5151    /// Constructor for the singleton, must recover Guid, Calendar, ...
    5252    /// </summary>
    53     private ConfigManager() {
    54       //retrive GUID from XML file, or burn in hell. as in hell. not heaven.
    55       //this won't work this way. We need a plugin for XML Handling.     
     53    private ConfigManager() {     
    5654      hardwareInfo = new ClientInfo();
    5755
     
    6866    }
    6967
     68    /// <summary>
     69    /// Get all the Information about the client
     70    /// </summary>
     71    /// <returns>the ClientInfo object</returns>
    7072    public ClientInfo GetClientInfo() {
    7173      hardwareInfo.Login = WcfService.Instance.ConnectedSince;
     
    7375    }
    7476
     77    /// <summary>
     78    /// Returns the connectioncontainer with the IP and Port, storred in the Settings framework
     79    /// </summary>
     80    /// <returns>The IP and Port of the server</returns>
    7581    public ConnectionContainer GetServerIPAndPort() {
    7682      ConnectionContainer cc = new ConnectionContainer();
     
    8086    }
    8187
     88    /// <summary>
     89    /// Sets and saves IP and Port in the Settings framework
     90    /// </summary>
     91    /// <param name="cc"></param>
    8292    public void SetServerIPAndPort(ConnectionContainer cc) {
    8393      Settings.Default.ServerIP = cc.IPAdress;
     
    8595      Settings.Default.Save();
    8696    }
    87 
     97    /// <summary>
     98    /// collects and returns information that get displayed by the Client Console
     99    /// </summary>
     100    /// <returns></returns>
    88101    public StatusCommons GetStatusForClientConsole() {
    89102      StatusCommons st = new StatusCommons();
Note: See TracChangeset for help on using the changeset viewer.