This commit is contained in:
luosheng
2023-07-16 08:17:03 +08:00
parent 6d655b24d1
commit 2055c10c59
127 changed files with 7414 additions and 7470 deletions

View File

@@ -26,30 +26,30 @@ using System;
namespace Technosoftware.DaAeHdaClient
{
/// <summary>
/// Detailed information about the server.
/// Set to null if the ServerDescription is being accessed without a client context.
/// </summary>
/// <summary>
/// Detailed information about the server.
/// Set to null if the ServerDescription is being accessed without a client context.
/// </summary>
public class OpcServerDetail
{
/// <summary>
/// The time the server was last started.
/// </summary>
public DateTime StartTime;
{
/// <summary>
/// The time the server was last started.
/// </summary>
public DateTime StartTime;
/// <summary>
/// The build number of the server.
/// </summary>
public string BuildNumber;
/// <summary>
/// The build number of the server.
/// </summary>
public string BuildNumber;
/// <summary>
/// The version of the server.
/// </summary>
public string Version;
/// <summary>
/// The version of the server.
/// </summary>
public string Version;
/// <summary>
/// Vendor-specific information about the server.
/// </summary>
public string VendorInfo;
}
/// <summary>
/// Vendor-specific information about the server.
/// </summary>
public string VendorInfo;
}
}