Skip to content

Commit dbcf924

Browse files
committed
Added missing doc-comments
1 parent 5b2c83a commit dbcf924

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

ScreenCapture.NET/Model/Display.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ public readonly struct Display
3131
/// </summary>
3232
public int Height { get; }
3333

34+
/// <summary>
35+
/// Gets the rotation of the <see cref="Display"/>.
36+
/// </summary>
3437
public Rotation Rotation { get; }
3538

3639
/// <summary>
@@ -49,6 +52,7 @@ public readonly struct Display
4952
/// <param name="deviceName">The name of the <see cref="Display"/>.</param>
5053
/// <param name="width">The with of the <see cref="Display"/>.</param>
5154
/// <param name="height">The height of the <see cref="Display"/>.</param>
55+
/// <param name="rotation">The rotation of the <see cref="Display"/>.</param>
5256
/// <param name="graphicsCard">The <see cref="GraphicsCard"/> this <see cref="Display"/> is connected to.</param>
5357
public Display(int index, string deviceName, int width, int height, Rotation rotation, GraphicsCard graphicsCard)
5458
{

ScreenCapture.NET/Model/Rotation.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace ScreenCapture.NET;
22

3+
/// <summary>
4+
/// Represents a display-rotation.
5+
/// </summary>
36
public enum Rotation
47
{
58
None = 0,

0 commit comments

Comments
 (0)