File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
src/Microsoft.OpenApi/Services
test/Microsoft.OpenApi.Tests/PublicApi Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -1279,32 +1279,32 @@ public class CurrentKeys
1279
1279
/// <summary>
1280
1280
/// Current Path key
1281
1281
/// </summary>
1282
- public string ? Path { get ; set ; }
1282
+ public string ? Path { get ; internal set ; }
1283
1283
1284
1284
/// <summary>
1285
1285
/// Current Operation Type
1286
1286
/// </summary>
1287
- public HttpMethod ? Operation { get ; set ; }
1287
+ public HttpMethod ? Operation { get ; internal set ; }
1288
1288
1289
1289
/// <summary>
1290
1290
/// Current Response Status Code
1291
1291
/// </summary>
1292
- public string ? Response { get ; set ; }
1292
+ public string ? Response { get ; internal set ; }
1293
1293
1294
1294
/// <summary>
1295
1295
/// Current Content Media Type
1296
1296
/// </summary>
1297
- public string ? Content { get ; set ; }
1297
+ public string ? Content { get ; internal set ; }
1298
1298
1299
1299
/// <summary>
1300
1300
/// Current Callback Key
1301
1301
/// </summary>
1302
- public string ? Callback { get ; set ; }
1302
+ public string ? Callback { get ; internal set ; }
1303
1303
1304
1304
/// <summary>
1305
1305
/// Current Link Key
1306
1306
/// </summary>
1307
- public string ? Link { get ; set ; }
1307
+ public string ? Link { get ; internal set ; }
1308
1308
1309
1309
/// <summary>
1310
1310
/// Current Header Key
Original file line number Diff line number Diff line change @@ -60,16 +60,16 @@ namespace Microsoft.OpenApi
60
60
public class CurrentKeys
61
61
{
62
62
public CurrentKeys() { }
63
- public string? Callback { get; set; }
64
- public string? Content { get; set; }
63
+ public string? Callback { get; }
64
+ public string? Content { get; }
65
65
public string? Encoding { get; }
66
66
public string? Example { get; }
67
67
public string? Extension { get; }
68
68
public string? Header { get; }
69
- public string? Link { get; set; }
70
- public System.Net.Http.HttpMethod? Operation { get; set; }
71
- public string? Path { get; set; }
72
- public string? Response { get; set; }
69
+ public string? Link { get; }
70
+ public System.Net.Http.HttpMethod? Operation { get; }
71
+ public string? Path { get; }
72
+ public string? Response { get; }
73
73
public string? ServerVariable { get; }
74
74
}
75
75
[System.AttributeUsage(System.AttributeTargets.Property | System.AttributeTargets.Field)]
You can’t perform that action at this time.
0 commit comments