Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ internal ParameterDefinitionEntry(string parameterSetName, bool mandatory)
/// <summary>
/// Property ParameterSetName.
/// </summary>
internal string ParameterSetName { get; } = null;
internal string ParameterSetName { get; }

/// <summary>
/// Whether the parameter is mandatory to the set.
/// </summary>
internal bool IsMandatory { get; } = false;
internal bool IsMandatory { get; }
}

/// <summary>
Expand Down Expand Up @@ -99,7 +99,7 @@ internal void reset()
/// <summary>
/// Property <c>DefaultParameterSet</c>
/// </summary>
internal bool IsDefaultParameterSet { get; } = false;
internal bool IsDefaultParameterSet { get; }

/// <summary>
/// Property <c>MandatoryParameterCount</c>
Expand All @@ -109,12 +109,12 @@ internal void reset()
/// <summary>
/// Property <c>IsValueSet</c>
/// </summary>
internal bool IsValueSet { get; set; } = false;
internal bool IsValueSet { get; set; }

/// <summary>
/// Property <c>IsValueSetAtBeginProcess</c>
/// </summary>
internal bool IsValueSetAtBeginProcess { get; set; } = false;
internal bool IsValueSetAtBeginProcess { get; set; }

/// <summary>
/// Property <c>SetMandatoryParameterCount</c>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ protected virtual void PostOperationDeleteEvent(OperationEventArgs args)
/// The current CimInstance object, against which issued
/// current operation, it could be null.
/// </summary>
internal CimInstance TargetCimInstance { get; private set; } = null;
internal CimInstance TargetCimInstance { get; private set; }

internal bool IsTemporaryCimSession { get; private set; }

Expand Down Expand Up @@ -2154,7 +2154,7 @@ protected override bool PreNewActionEvent(CmdletActionEventArgs args)

#region private members

internal CimNewCimInstance NewCimInstanceOperation { get; } = null;
internal CimNewCimInstance NewCimInstanceOperation { get; }

#endregion
}
Expand Down