File tree 2 files changed +9
-9
lines changed
Microsoft.TestPlatform.CommunicationUtilities/Interfaces/Communication
Microsoft.TestPlatform.PlatformAbstractions/Interfaces/System
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,28 +11,28 @@ namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces
11
11
public class CommunicationException : Exception
12
12
{
13
13
/// <summary>
14
- /// Initializes a new instance of <see cref="CommunicationException" /> class.
14
+ /// Initializes a new instance of the <see cref="CommunicationException" /> class.
15
15
/// </summary>
16
16
public CommunicationException ( )
17
17
{
18
18
}
19
19
20
20
/// <summary>
21
- /// Initializes a new instance of <see cref="CommunicationException" /> class with provided
21
+ /// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
22
22
/// message.
23
23
/// </summary>
24
- /// <param Name ="message">Message describing the error.</param>
24
+ /// <param name ="message">Message describing the error.</param>
25
25
public CommunicationException ( string message )
26
26
: base ( message )
27
27
{
28
28
}
29
29
30
30
/// <summary>
31
- /// Initializes a new instance of <see cref="CommunicationException" /> class with provided
31
+ /// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
32
32
/// message and inner exception.
33
33
/// </summary>
34
- /// <param Name ="message">Message describing the error.</param>
35
- /// <param Name ="inner">Inner exception.</param>
34
+ /// <param name ="message">Message describing the error.</param>
35
+ /// <param name ="inner">Inner exception.</param>
36
36
public CommunicationException ( string message , Exception inner )
37
37
: base ( message , inner )
38
38
{
Original file line number Diff line number Diff line change @@ -9,17 +9,17 @@ namespace Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces
9
9
public interface IEnvironment
10
10
{
11
11
/// <summary>
12
- /// Operating System architecture.
12
+ /// Gets the Operating System architecture.
13
13
/// </summary>
14
14
PlatformArchitecture Architecture { get ; }
15
15
16
16
/// <summary>
17
- /// Operating System name.
17
+ /// Gets the Operating System name.
18
18
/// </summary>
19
19
PlatformOperatingSystem OperatingSystem { get ; }
20
20
21
21
/// <summary>
22
- /// Operating System Version
22
+ /// Gets the Operating System Version
23
23
/// </summary>
24
24
string OperatingSystemVersion { get ; }
25
25
You can’t perform that action at this time.
0 commit comments