Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,28 @@ namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces
public class CommunicationException : Exception
{
/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class.
/// Initializes a new instance of the <see cref="CommunicationException" /> class.
/// </summary>
public CommunicationException()
{
}

/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
/// message.
/// </summary>
/// <param Name="message">Message describing the error.</param>
/// <param name="message">Message describing the error.</param>
public CommunicationException(string message)
: base(message)
{
}

/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
/// message and inner exception.
/// </summary>
/// <param Name="message">Message describing the error.</param>
/// <param Name="inner">Inner exception.</param>
/// <param name="message">Message describing the error.</param>
/// <param name="inner">Inner exception.</param>
public CommunicationException(string message, Exception inner)
: base(message, inner)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ namespace Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces
public interface IEnvironment
{
/// <summary>
/// Operating System architecture.
/// Gets the Operating System architecture.
/// </summary>
PlatformArchitecture Architecture { get; }

/// <summary>
/// Operating System name.
/// Gets the Operating System name.
/// </summary>
PlatformOperatingSystem OperatingSystem { get; }

/// <summary>
/// Operating System Version
/// Gets the Operating System Version
/// </summary>
string OperatingSystemVersion { get; }

Expand Down