Exemple #1
0
 /// <summary>
 ///     ''' Set an entire device profile from an ASCOMProfile class instance
 ///     ''' </summary>
 ///     ''' <param name="DriverId">The ProgID of the device</param>
 ///     ''' <param name="NewProfileKey">A class representing the profile</param>
 ///     ''' <remarks>Please see the code examples in this help file for a description of how to use this method.</remarks>
 public void SetProfile(string DriverId, ASCOMProfile NewProfileKey)
 {
     TL.LogMessage("SetProfile", "Driver: " + DriverId);
     CheckRegistered(DriverId);
     ProfileStore.SetProfile(MakeKey(DriverId, ""), NewProfileKey);
     TL.LogMessage("  SetProfile", "  Complete");
 }
Exemple #2
0
 internal void SetProfileXML(string DriverId, ASCOMProfile Profile)
 {
     throw new MethodNotImplementedException("XMLAccess:SetProfileXml");
 }