-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support nullable reference types in C# 8 in OData2Poco project
- Loading branch information
1 parent
bef052b
commit 1575fc5
Showing
22 changed files
with
124 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
using System.Net; | ||
#nullable disable | ||
using System.Net; | ||
using OData2Poco.Http; | ||
|
||
namespace OData2Poco | ||
{ | ||
public class OdataConnectionString | ||
{ | ||
public string ServiceUrl { get; set; } | ||
public string UserName { get; set; } | ||
public string Password { get; set; } | ||
public string Domain { get; set; } | ||
public string Proxy { get; set; } | ||
public string TokenUrl { get; set; } | ||
public string TokenParams { get; set; } | ||
public string ParamFile { get; set; } | ||
public string ServiceUrl { get; set; } | ||
public string UserName { get; set; } | ||
public string Password { get; set; } | ||
public string Domain { get; set; } | ||
public string Proxy { get; set; } | ||
public string TokenUrl { get; set; } | ||
public string TokenParams { get; set; } | ||
public string ParamFile { get; set; } | ||
public AuthenticationType Authenticate { get; set; } | ||
public SecurityProtocolType TlsProtocol { get; set; }=SecurityProtocolType.Tls12; | ||
public SecurityProtocolType TlsProtocol { get; set; } | ||
|
||
public OdataConnectionString() | ||
{ | ||
TlsProtocol = SecurityProtocolType.Tls12; | ||
} | ||
} | ||
|
||
} | ||
|
||
#nullable restore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.