Skip to content

Commit 3ccdc42

Browse files
authored
fix(generator): document server selection support (#273)
1 parent 54a7381 commit 3ccdc42

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/libs/AutoSDK.CSharp/Sources/Sources.ServerSelection.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ namespace {settings.Namespace}
1717
/// </summary>
1818
public sealed class AutoSDKServer
1919
{{
20+
/// <summary>
21+
/// Initializes a new instance of the <see cref=""AutoSDKServer""/> class.
22+
/// </summary>
23+
/// <param name=""id"">The stable identifier for this server option.</param>
24+
/// <param name=""name"">The display name for this server option.</param>
25+
/// <param name=""url"">The server URL.</param>
26+
/// <param name=""description"">The server description.</param>
2027
public AutoSDKServer(
2128
string id,
2229
string name,
@@ -30,10 +37,25 @@ public AutoSDKServer(
3037
Uri = new global::System.Uri(url, global::System.UriKind.RelativeOrAbsolute);
3138
}}
3239
40+
/// <summary>
41+
/// Gets the stable identifier for this server option.
42+
/// </summary>
3343
public string Id {{ get; }}
44+
/// <summary>
45+
/// Gets the display name for this server option.
46+
/// </summary>
3447
public string Name {{ get; }}
48+
/// <summary>
49+
/// Gets the server URL.
50+
/// </summary>
3551
public string Url {{ get; }}
52+
/// <summary>
53+
/// Gets the server description.
54+
/// </summary>
3655
public string Description {{ get; }}
56+
/// <summary>
57+
/// Gets the parsed server URI.
58+
/// </summary>
3759
public global::System.Uri Uri {{ get; }}
3860
}}
3961

0 commit comments

Comments
 (0)