Microsoft.Data.SqlClient.UserAgent.UserAgentInfoDto
class UserAgentInfoDto
namespace Microsoft.Data.SqlClient.UserAgent
{
internal class UserAgentInfoDto
{
public class OsInfo
{
public const string TypeJsonKey = "type";
public const string DetailsJsonKey = "details";
public string Type { get; set; }
public string Details { get; set; }
public OsInfo();
}
public const string DriverJsonKey = "driver";
public const string VersionJsonKey = "version";
public const string OsJsonKey = "os";
public const string ArchJsonKey = "arch";
public const string RuntimeJsonKey = "runtime";
public string Driver { get; set; }
public string Version { get; set; }
public OsInfo OS { get; set; }
public string Arch { get; set; }
public string Runtime { get; set; }
public UserAgentInfoDto();
}
}