Skip to content

Commit e5bccf9

Browse files
committed
Update documentation and samples
1 parent 0e38d50 commit e5bccf9

19 files changed

Lines changed: 38 additions & 38 deletions

File tree

samples/client/petstore/csharp/generichost/net4.7/AllOf/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.7/AnyOf/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.7/FormModels/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.7/OneOf/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.7/Petstore/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.7/UseDateTimeForDate/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.8/AllOf/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.8/AnyOf/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

samples/client/petstore/csharp/generichost/net4.8/AnyOfNoCompare/src/Org.OpenAPITools/Client/ApiException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public class ApiException : Exception
3535
/// <summary>
3636
/// The HttpResponseMessage object
3737
/// </summary>
38-
public System.Net.Http.HttpResponseMessage? RawResponse { get; }
38+
public System.Net.Http.HttpResponseMessage RawResponse { get; }
3939

4040
/// <summary>
4141
/// Construct the ApiException from parts of the response
4242
/// </summary>
4343
/// <param name="reasonPhrase"></param>
4444
/// <param name="statusCode"></param>
4545
/// <param name="rawContent"></param>
46-
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage? rawResponse = null) : base(reasonPhrase ?? rawContent)
46+
public ApiException(string reasonPhrase, System.Net.HttpStatusCode statusCode, string rawContent, System.Net.Http.HttpResponseMessage rawResponse = null) : base(reasonPhrase ?? rawContent)
4747
{
4848
ReasonPhrase = reasonPhrase;
4949

0 commit comments

Comments
 (0)