Skip to content

Commit

Permalink
add nullable to wctx (#2241)
Browse files Browse the repository at this point in the history
* add nullable to wctx

* add optional to wreply, wct, wresultptr

* add a few more optional params

* marking all as nullable
  • Loading branch information
jennyf19 authored and Brent Schmaltz committed Sep 6, 2023
1 parent 8670bef commit 8f33042
Showing 1 changed file with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ public bool IsSignOutMessage
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "Wa")]
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wa
public string? Wa
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wa); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wa, value); }
Expand All @@ -336,7 +336,7 @@ public string Wa
/// Gets or sets 'wattr'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wattr
public string? Wattr
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wattr); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wattr, value); }
Expand All @@ -346,7 +346,7 @@ public string Wattr
/// Gets or sets 'wattrptr'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wattrptr
public string? Wattrptr
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wattrptr); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wattrptr, value); }
Expand All @@ -356,7 +356,7 @@ public string Wattrptr
/// Gets or sets 'wauth'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wauth
public string? Wauth
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wauth); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wauth, value); }
Expand All @@ -366,7 +366,7 @@ public string Wauth
/// Gets or sets 'wct'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wct
public string? Wct
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wct); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wct, value); }
Expand All @@ -376,7 +376,7 @@ public string Wct
/// Gets or sets 'wctx'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wctx
public string? Wctx
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wctx); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wctx, value); }
Expand All @@ -386,7 +386,7 @@ public string Wctx
/// Gets or sets 'wencoding'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wencoding
public string? Wencoding
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wencoding); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wencoding, value); }
Expand All @@ -396,7 +396,7 @@ public string Wencoding
/// Gets or sets 'wfed'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wfed
public string? Wfed
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wfed); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wfed, value); }
Expand All @@ -406,7 +406,7 @@ public string Wfed
/// Gets or sets 'wfresh'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wfresh
public string? Wfresh
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wfresh); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wfresh, value); }
Expand All @@ -416,7 +416,7 @@ public string Wfresh
/// Gets or sets 'whr'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Whr
public string? Whr
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Whr); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Whr, value); }
Expand All @@ -427,7 +427,7 @@ public string Whr
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
[property: SuppressMessage("Microsoft.Naming", "CA1709")]
public string Wp
public string? Wp
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wp); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wp, value); }
Expand All @@ -437,7 +437,7 @@ public string Wp
/// Gets or sets 'wpseudo'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wpseudo
public string? Wpseudo
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wpseudo); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wpseudo, value); }
Expand All @@ -447,7 +447,7 @@ public string Wpseudo
/// Gets or sets 'wpseudoptr'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wpseudoptr
public string? Wpseudoptr
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wpseudoptr); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wpseudoptr, value); }
Expand All @@ -457,7 +457,7 @@ public string Wpseudoptr
/// Gets or sets 'wreply'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wreply
public string? Wreply
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wreply); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wreply, value); }
Expand All @@ -467,7 +467,7 @@ public string Wreply
/// Gets or sets 'wreq'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wreq
public string? Wreq
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wreq); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wreq, value); }
Expand All @@ -477,7 +477,7 @@ public string Wreq
/// Gets or sets 'wreqptr'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wreqptr
public string? Wreqptr
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wreqptr); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wreqptr, value); }
Expand All @@ -487,7 +487,7 @@ public string Wreqptr
/// Gets or sets 'wres'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wres
public string? Wres
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wres); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wres, value); }
Expand All @@ -496,7 +496,7 @@ public string Wres
/// <summary>
/// Gets or sets 'wresult'.
/// </summary>
public string Wresult
public string? Wresult
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wresult); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wresult, value); }
Expand All @@ -506,7 +506,7 @@ public string Wresult
/// Gets or sets 'wresultptr'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wresultptr
public string? Wresultptr
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wresultptr); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wresultptr, value); }
Expand All @@ -516,7 +516,7 @@ public string Wresultptr
/// Gets or sets 'wtrealm'.
/// </summary>
[property: SuppressMessage("Microsoft.Naming", "CA1704")]
public string Wtrealm
public string? Wtrealm
{
get { return GetParameter(WsFederationConstants.WsFederationParameterNames.Wtrealm); }
set { SetParameter(WsFederationConstants.WsFederationParameterNames.Wtrealm, value); }
Expand Down

0 comments on commit 8f33042

Please sign in to comment.