output)
{
@@ -2442,8 +2442,8 @@ internal override DebuggerCommand InternalProcessCommand(string command, IList
- /// Current source line
- /// Output collection
+ /// Current source line.
+ /// Output collection.
/// True if source listed successfully.
internal override bool InternalProcessListCommand(int lineNum, IList output)
{
@@ -2620,7 +2620,7 @@ private bool TryAddDebugJob(Job job)
/// Removes job from debugger job list and pops its
/// debugger from the active debugger stack.
///
- /// Job
+ /// Job.
internal override void StopDebugJob(Job job)
{
// Parameter validation.
@@ -2643,8 +2643,8 @@ internal override void StopDebugJob(Job job)
///
/// Helper method to set a IJobDebugger job CanDebug property.
///
- /// IJobDebugger
- /// Boolean
+ /// IJobDebugger.
+ /// Boolean.
internal static void SetDebugJobAsync(IJobDebugger debuggableJob, bool isAsync)
{
if (debuggableJob != null)
@@ -2660,7 +2660,7 @@ internal static void SetDebugJobAsync(IJobDebugger debuggableJob, bool isAsync)
///
/// Sets up debugger to debug provided Runspace in a nested debug session.
///
- /// Runspace to debug
+ /// Runspace to debug.
internal override void DebugRunspace(Runspace runspace)
{
if (runspace == null)
@@ -2705,7 +2705,7 @@ internal override void DebugRunspace(Runspace runspace)
///
/// Removes the provided Runspace from the nested "active" debugger state.
///
- /// Runspace
+ /// Runspace.
internal override void StopDebugRunspace(Runspace runspace)
{
if (runspace == null) { throw new PSArgumentNullException("runspace"); }
@@ -2726,7 +2726,7 @@ internal override void StopDebugRunspace(Runspace runspace)
/// The queue will then raise the StartRunspaceDebugProcessing events for each runspace to allow
/// a host script debugger implementation to provide an active debugging session.
///
- /// Runspace to debug
+ /// Runspace to debug.
internal override void QueueRunspaceForDebug(Runspace runspace)
{
runspace.StateChanged += RunspaceStateChangedHandler;
@@ -3924,9 +3924,9 @@ public Guid ParentDebuggerId
///
/// Creates an instance of NestedRunspaceDebugger.
///
- /// Runspace
- /// Runspace type
- /// Debugger Id of parent
+ /// Runspace.
+ /// Runspace type.
+ /// Debugger Id of parent.
public NestedRunspaceDebugger(
Runspace runspace,
PSMonitorRunspaceType runspaceType,
@@ -3955,8 +3955,8 @@ public NestedRunspaceDebugger(
///
/// Process debugger or PowerShell command/script.
///
- /// PowerShell command
- /// Output collection
+ /// PowerShell command.
+ /// Output collection.
/// DebuggerCommandResults.
public override DebuggerCommandResults ProcessCommand(PSCommand command, PSDataCollection output)
{
@@ -3991,7 +3991,7 @@ public override DebuggerCommandResults ProcessCommand(PSCommand command, PSDataC
///
/// SetDebuggerAction
///
- /// Debugger resume action
+ /// Debugger resume action.
public override void SetDebuggerAction(DebuggerResumeAction resumeAction)
{
_wrappedDebugger.SetDebuggerAction(resumeAction);
@@ -4018,7 +4018,7 @@ public override DebuggerStopEventArgs GetDebuggerStopArgs()
///
/// Sets the debugger mode.
///
- /// Debug mode
+ /// Debug mode.
public override void SetDebugMode(DebugModes mode)
{
_wrappedDebugger.SetDebugMode(mode);
@@ -4027,7 +4027,7 @@ public override void SetDebugMode(DebugModes mode)
///
/// Sets debugger stepping mode.
///
- /// True if stepping is to be enabled
+ /// True if stepping is to be enabled.
public override void SetDebuggerStepMode(bool enabled)
{
_wrappedDebugger.SetDebuggerStepMode(enabled);
@@ -4215,7 +4215,7 @@ internal sealed class StandaloneRunspaceDebugger : NestedRunspaceDebugger
///
/// Constructor
///
- /// Runspace
+ /// Runspace.
public StandaloneRunspaceDebugger(
Runspace runspace)
: base(runspace, PSMonitorRunspaceType.Standalone, Guid.Empty)
@@ -4325,11 +4325,11 @@ internal sealed class EmbeddedRunspaceDebugger : NestedRunspaceDebugger
///
/// Constructor for runspaces executing from script.
///
- /// Runspace to debug
- /// PowerShell command
- /// Root debugger
- /// Runspace to monitor type
- /// Parent debugger Id
+ /// Runspace to debug.
+ /// PowerShell command.
+ /// Root debugger.
+ /// Runspace to monitor type.
+ /// Parent debugger Id.
public EmbeddedRunspaceDebugger(
Runspace runspace,
PowerShell command,
@@ -4418,7 +4418,7 @@ protected override bool HandleListCommand(PSDataCollection output)
/// cases where the debugged runspace is called inside a parent sccript,
/// such as with Workflow InlineScripts and script Invoke-Command cases.
///
- /// Invocation information from debugger stop
+ /// Invocation information from debugger stop.
/// InvocationInfo.
internal override InvocationInfo FixupInvocationInfo(InvocationInfo debugStopInvocationInfo)
{
@@ -4646,8 +4646,8 @@ private DebuggerCommandResults()
///
/// Constructor
///
- /// Resume action
- /// True if evaluated by debugger
+ /// Resume action.
+ /// True if evaluated by debugger.
public DebuggerCommandResults(
DebuggerResumeAction? resumeAction,
bool evaluatedByDebugger)
@@ -4764,8 +4764,8 @@ public DebuggerCommand ProcessCommand(PSHost host, string command, InvocationInf
///
/// Process list command with provided line number.
///
- /// Current InvocationInfo
- /// Output
+ /// Current InvocationInfo.
+ /// Output.
public void ProcessListCommand(InvocationInfo invocationInfo, IList output)
{
DoProcessCommand(null, "list", invocationInfo, output);
@@ -4775,7 +4775,7 @@ public void ProcessListCommand(InvocationInfo invocationInfo, IList ou
/// Looks up string command and if it is a debugger command returns the
/// corresponding DebuggerCommand object.
///
- /// String command
+ /// String command.
/// DebuggerCommand or null.
public DebuggerCommand ProcessBasicCommand(string command)
{
@@ -5072,8 +5072,8 @@ public class PSDebugContext
///
/// Constructor.
///
- /// InvocationInfo
- /// Breakpoints
+ /// InvocationInfo.
+ /// Breakpoints.
public PSDebugContext(InvocationInfo invocationInfo, List breakpoints)
{
if (breakpoints == null)
@@ -5109,7 +5109,7 @@ public sealed class CallStackFrame
///
/// Constructor
///
- /// Invocation Info
+ /// Invocation Info.
public CallStackFrame(InvocationInfo invocationInfo)
: this(null, invocationInfo)
{
@@ -5118,8 +5118,8 @@ public CallStackFrame(InvocationInfo invocationInfo)
///
/// Constructor
///
- /// Function context
- /// Invocation Info
+ /// Function context.
+ /// Invocation Info.
internal CallStackFrame(FunctionContext functionContext, InvocationInfo invocationInfo)
{
if (invocationInfo == null)
@@ -5339,7 +5339,7 @@ public static class DebuggerUtils
/// Helper method to determine if command should be added to debugger
/// history.
///
- /// Command string
+ /// Command string.
/// True if command can be added to history.
public static bool ShouldAddCommandToHistory(string command)
{
@@ -5372,8 +5372,8 @@ public static IEnumerable GetWorkflowDebuggerFunctions()
///
/// Start monitoring a runspace on the target debugger.
///
- /// Target debugger
- /// PSMonitorRunspaceInfo
+ /// Target debugger.
+ /// PSMonitorRunspaceInfo.
public static void StartMonitoringRunspace(Debugger debugger, PSMonitorRunspaceInfo runspaceInfo)
{
if (debugger == null)
@@ -5392,8 +5392,8 @@ public static void StartMonitoringRunspace(Debugger debugger, PSMonitorRunspaceI
///
/// End monitoring a runspace on the target degbugger.
///
- /// Target debugger
- /// PSMonitorRunspaceInfo
+ /// Target debugger.
+ /// PSMonitorRunspaceInfo.
public static void EndMonitoringRunspace(Debugger debugger, PSMonitorRunspaceInfo runspaceInfo)
{
if (debugger == null)
@@ -5466,8 +5466,8 @@ private PSMonitorRunspaceInfo() { }
///
/// Constructor
///
- /// Runspace
- /// Runspace type
+ /// Runspace.
+ /// Runspace type.
protected PSMonitorRunspaceInfo(
Runspace runspace,
PSMonitorRunspaceType runspaceType)
@@ -5512,7 +5512,7 @@ public sealed class PSStandaloneMonitorRunspaceInfo : PSMonitorRunspaceInfo
///
/// Creates instance of PSStandaloneMonitorRunspaceInfo
///
- /// Runspace to monitor
+ /// Runspace to monitor.
public PSStandaloneMonitorRunspaceInfo(
Runspace runspace)
: base(runspace, PSMonitorRunspaceType.Standalone)
@@ -5534,7 +5534,7 @@ internal override PSMonitorRunspaceInfo Copy()
///
/// Creates an instance of a NestedRunspaceDebugger.
///
- /// Root debugger or null
+ /// Root debugger or null.
/// NestedRunspaceDebugger wrapper.
internal override NestedRunspaceDebugger CreateDebugger(Debugger rootDebugger)
{
@@ -5570,10 +5570,10 @@ public sealed class PSEmbeddedMonitorRunspaceInfo : PSMonitorRunspaceInfo
///
/// Creates instance of PSEmbeddedMonitorRunspaceInfo
///
- /// Runspace to monitor
- /// Type of runspace
- /// Running command
- /// Unique parent debugger id or null
+ /// Runspace to monitor.
+ /// Type of runspace.
+ /// Running command.
+ /// Unique parent debugger id or null.
public PSEmbeddedMonitorRunspaceInfo(
Runspace runspace,
PSMonitorRunspaceType runspaceType,
@@ -5605,7 +5605,7 @@ internal override PSMonitorRunspaceInfo Copy()
///
/// Creates an instance of a NestedRunspaceDebugger.
///
- /// Root debugger or null
+ /// Root debugger or null.
/// NestedRunspaceDebugger wrapper.
internal override NestedRunspaceDebugger CreateDebugger(Debugger rootDebugger)
{
diff --git a/src/System.Management.Automation/engine/hostifaces/AsyncResult.cs b/src/System.Management.Automation/engine/hostifaces/AsyncResult.cs
index 4b4664b0c9c..243d9009bc9 100644
--- a/src/System.Management.Automation/engine/hostifaces/AsyncResult.cs
+++ b/src/System.Management.Automation/engine/hostifaces/AsyncResult.cs
@@ -234,8 +234,8 @@ internal void EndInvoke()
///
/// Use blocked thread to invoke callback delegate.
///
- /// Callback delegate
- /// Callback state
+ /// Callback delegate.
+ /// Callback state.
internal bool InvokeCallbackOnThread(WaitCallback callback, object state)
{
if (callback == null)
diff --git a/src/System.Management.Automation/engine/hostifaces/Command.cs b/src/System.Management.Automation/engine/hostifaces/Command.cs
index e7a77b26000..c11ba595f3d 100644
--- a/src/System.Management.Automation/engine/hostifaces/Command.cs
+++ b/src/System.Management.Automation/engine/hostifaces/Command.cs
@@ -20,8 +20,8 @@ public sealed class Command
///
/// Initializes a new instance of Command class using specified command parameter.
///
- /// Name of the command or script contents
- /// command is null
+ /// Name of the command or script contents.
+ /// command is null.
public Command(string command)
: this(command, false, null)
{
@@ -30,9 +30,9 @@ public Command(string command)
///
/// Initializes a new instance of Command class using specified command parameter.
///
- /// The command name or script contents
+ /// The command name or script contents.
/// True if this command represents a script, otherwise; false.
- /// command is null
+ /// command is null.
public Command(string command, bool isScript)
: this(command, isScript, null)
{
@@ -41,10 +41,10 @@ public Command(string command, bool isScript)
///
/// Constructor
///
- /// The command name or script contents
+ /// The command name or script contents.
/// True if this command represents a script, otherwise; false.
- /// if true local scope is used to run the script command
- /// command is null
+ /// if true local scope is used to run the script command.
+ /// command is null.
public Command(string command, bool isScript, bool useLocalScope)
{
IsEndOfStatement = false;
@@ -567,7 +567,7 @@ CommandOrigin origin
/// Creates a Command object from a PSObject property bag.
/// PSObject has to be in the format returned by ToPSObjectForRemoting method.
///
- /// PSObject to rehydrate
+ /// PSObject to rehydrate.
///
/// Command rehydrated from a PSObject property bag
///
@@ -634,7 +634,7 @@ internal static Command FromPSObjectForRemoting(PSObject commandAsPSObject)
/// Returns this object as a PSObject property bag
/// that can be used in a remoting protocol data object.
///
- /// PowerShell remoting protocol version
+ /// PowerShell remoting protocol version.
/// This object as a PSObject property bag.
internal PSObject ToPSObjectForRemoting(Version psRPVersion)
{
@@ -853,7 +853,7 @@ internal void Add(string command, bool mergeUnclaimedPreviousCommandError)
///
/// Adds a new script command
///
- /// script contents
+ /// script contents.
///
/// scriptContents is null.
///
@@ -865,8 +865,8 @@ public void AddScript(string scriptContents)
///
/// Adds a new scrip command for given script
///
- /// script contents
- /// if true local scope is used to run the script command
+ /// script contents.
+ /// if true local scope is used to run the script command.
///
/// scriptContents is null.
///
diff --git a/src/System.Management.Automation/engine/hostifaces/Connection.cs b/src/System.Management.Automation/engine/hostifaces/Connection.cs
index fbad050777b..3e76af1036c 100644
--- a/src/System.Management.Automation/engine/hostifaces/Connection.cs
+++ b/src/System.Management.Automation/engine/hostifaces/Connection.cs
@@ -64,8 +64,8 @@ public InvalidRunspaceStateException(string message, Exception innerException)
/// with a specified error message and current and expected state.
///
/// The message that describes the error.
- /// Current state of runspace
- /// Expected states of runspace
+ /// Current state of runspace.
+ /// Expected states of runspace.
internal InvalidRunspaceStateException
(
string message,
@@ -1409,7 +1409,7 @@ public static Runspace GetRunspace(RunspaceConnectionInfo connectionInfo, Guid s
///
/// Creates a pipeline for specified command string
///
- /// A valid command string
+ /// A valid command string.
///
/// A pipeline pre-filled with a object for specified command parameter.
///
@@ -1421,8 +1421,8 @@ public static Runspace GetRunspace(RunspaceConnectionInfo connectionInfo, Guid s
///
/// Create a pipeline from a command string.
///
- /// A valid command string
- /// if true command is added to history
+ /// A valid command string.
+ /// if true command is added to history.
///
/// A pipeline pre-filled with a object for specified command parameter.
///
@@ -1444,8 +1444,8 @@ public static Runspace GetRunspace(RunspaceConnectionInfo connectionInfo, Guid s
///
/// Creates a nested pipeline.
///
- /// A valid command string
- /// if true command is added to history
+ /// A valid command string.
+ /// if true command is added to history.
///
/// A pipeline pre-filled with Command specified in commandString.
///
@@ -1481,7 +1481,7 @@ public static Runspace GetRunspace(RunspaceConnectionInfo connectionInfo, Guid s
///
/// Push a running PowerShell onto the stack.
///
- /// PowerShell
+ /// PowerShell.
internal void PushRunningPowerShell(PowerShell ps)
{
Dbg.Assert(ps != null, "Caller should not pass in null reference.");
diff --git a/src/System.Management.Automation/engine/hostifaces/ConnectionBase.cs b/src/System.Management.Automation/engine/hostifaces/ConnectionBase.cs
index d6ad04706bc..7bf5e4d7acb 100644
--- a/src/System.Management.Automation/engine/hostifaces/ConnectionBase.cs
+++ b/src/System.Management.Automation/engine/hostifaces/ConnectionBase.cs
@@ -29,7 +29,7 @@ internal abstract class RunspaceBase : Runspace
/// Construct an instance of an Runspace using a custom
/// implementation of PSHost.
///
- /// The explicit PSHost implementation
+ /// The explicit PSHost implementation.
///
/// Host is null.
///
@@ -51,7 +51,7 @@ protected RunspaceBase(PSHost host)
/// Construct an instance of an Runspace using a custom
/// implementation of PSHost.
///
- /// The explicit PSHost implementation
+ /// The explicit PSHost implementation.
///
/// Host is null.
///
@@ -530,7 +530,7 @@ public override Pipeline CreatePipeline()
///
/// Create a pipeline from a command string
///
- /// A valid command string
+ /// A valid command string.
///
/// A pipeline pre-filled with Commands specified in commandString.
///
@@ -550,8 +550,8 @@ public override Pipeline CreatePipeline(string command)
///
/// Create a pipeline from a command string.
///
- /// A valid command string
- /// if true command is added to history
+ /// A valid command string.
+ /// if true command is added to history.
///
/// A pipeline pre-filled with Commands specified in commandString.
///
@@ -584,8 +584,8 @@ public override Pipeline CreateNestedPipeline()
///
/// Creates a nested pipeline.
///
- /// A valid command string
- /// if true command is added to history
+ /// A valid command string.
+ /// if true command is added to history.
///
/// A pipeline pre-filled with Commands specified in commandString.
///
@@ -606,8 +606,8 @@ public override Pipeline CreateNestedPipeline(string command, bool addToHistory)
/// Create a pipeline from a command string
///
/// A valid command string or String.Empty.
- /// if true command is added to history
- /// True for nested pipeline
+ /// if true command is added to history.
+ /// True for nested pipeline.
///
/// A pipeline pre-filled with Commands specified in commandString.
///
@@ -696,7 +696,7 @@ public RunspaceEventQueueItem(RunspaceStateInfo runspaceStateInfo, RunspaceAvail
///
/// Set the new runspace state.
///
- /// the new state
+ /// the new state.
/// An exception indicating the state change is the
/// result of an error, otherwise; null.
///
@@ -735,7 +735,7 @@ protected void SetRunspaceState(RunspaceState state, Exception reason)
///
/// Set the current runspace state - no error
///
- /// the new state
+ /// the new state.
protected void SetRunspaceState(RunspaceState state)
{
this.SetRunspaceState(state, null);
@@ -1515,8 +1515,8 @@ internal ProviderIntrinsics InvokeProvider
/// Protected methods to be implemented by derived class.
/// This does the actual work of setting variable.
///
- /// Name of the variable to set
- /// The value to set it to
+ /// Name of the variable to set.
+ /// The value to set it to.
protected abstract void DoSetVariable(string name, object value);
///
diff --git a/src/System.Management.Automation/engine/hostifaces/DefaultHost.cs b/src/System.Management.Automation/engine/hostifaces/DefaultHost.cs
index 5ea86eeef5c..c6cf950db59 100644
--- a/src/System.Management.Automation/engine/hostifaces/DefaultHost.cs
+++ b/src/System.Management.Automation/engine/hostifaces/DefaultHost.cs
@@ -21,8 +21,8 @@ internal class DefaultHost : PSHost
///
/// Creates an instance based on the current culture and current UI culture
///
- /// Current culture for this host
- /// Current UI culture for this host
+ /// Current culture for this host.
+ /// Current UI culture for this host.
///
internal DefaultHost(CultureInfo currentCulture, CultureInfo currentUICulture)
diff --git a/src/System.Management.Automation/engine/hostifaces/History.cs b/src/System.Management.Automation/engine/hostifaces/History.cs
index c6913608846..1bc88f1f829 100644
--- a/src/System.Management.Automation/engine/hostifaces/History.cs
+++ b/src/System.Management.Automation/engine/hostifaces/History.cs
@@ -24,10 +24,10 @@ public class HistoryInfo
///
/// Id of pipeline in which command associated
/// with this history entry is executed
- /// command string
- /// status of pipeline execution
- /// startTime of execution
- /// endTime of execution
+ /// command string.
+ /// status of pipeline execution.
+ /// startTime of execution.
+ /// endTime of execution.
internal HistoryInfo(long pipelineId, string cmdline, PipelineState status, DateTime startTime, DateTime endTime)
{
Dbg.Assert(cmdline != null, "caller should validate the parameter");
@@ -195,7 +195,7 @@ internal History(ExecutionContext context)
///
///
///
- /// If true, the entry will not be added when the history is locked
+ /// If true, the entry will not be added when the history is locked.
/// Id for the new created entry. Use this id to fetch the
/// entry. Returns -1 if the entry is not added.
/// This function is thread safe
@@ -222,10 +222,10 @@ internal long AddEntry(long pipelineId, string cmdline, PipelineState status, Da
///
/// Update the history entry corresponding to id.
///
- /// id of history entry to be updated
- /// status to be updated
- /// endTime to be updated
- /// If true, the entry will not be added when the history is locked
+ /// id of history entry to be updated.
+ /// status to be updated.
+ /// endTime to be updated.
+ /// If true, the entry will not be added when the history is locked.
///
internal void UpdateEntry(long id, PipelineState status, DateTime endTime, bool skipIfLocked)
{
@@ -253,7 +253,7 @@ internal void UpdateEntry(long id, PipelineState status, DateTime endTime, bool
/// Gets entry from buffer for given id. This id should be the
/// id returned by Add method.
///
- /// Id of the entry to be fetched
+ /// Id of the entry to be fetched.
/// Entry corresponding to id if it is present else null
///
internal HistoryInfo GetEntry(long id)
@@ -551,7 +551,7 @@ internal HistoryInfo[] GetEntries(WildcardPattern wildcardpattern, long count, S
///
/// Clears the history entry from buffer for a given id.
///
- /// Id of the entry to be Cleared
+ /// Id of the entry to be Cleared.
/// Nothing.
internal void ClearEntry(long id)
{
@@ -630,7 +630,7 @@ private long Add(HistoryInfo entry)
/// Gets entry from buffer for given id. This id should be the
/// id returned by Add method.
///
- /// Id of the entry to be fetched
+ /// Id of the entry to be fetched.
/// Entry corresponding to id if it is present else null
///
private HistoryInfo CoreGetEntry(long id)
@@ -1893,10 +1893,10 @@ private void ClearHistoryByCmdLine()
///
/// Clears the session history based on the input parameter
- /// id of the entry to be cleared
- /// count of entries to be cleared
- /// cmdline string to be cleared
- /// order of the entries
+ /// id of the entry to be cleared.
+ /// count of entries to be cleared.
+ /// cmdline string to be cleared.
+ /// order of the entries.
/// Nothing.
///
diff --git a/src/System.Management.Automation/engine/hostifaces/HostUtilities.cs b/src/System.Management.Automation/engine/hostifaces/HostUtilities.cs
index 12514e5115d..f32fbf16d67 100644
--- a/src/System.Management.Automation/engine/hostifaces/HostUtilities.cs
+++ b/src/System.Management.Automation/engine/hostifaces/HostUtilities.cs
@@ -105,12 +105,12 @@ internal static PSCommand[] GetProfileCommands(string shellId)
/// Gets the object that serves as a value to $profile and the paths on it
///
/// The id identifying the host or shell used in profile file names.
- /// used from test not to overwrite the profile file names from development boxes
- /// path for all users and all hosts
- /// path for current user and all hosts
- /// path for all users current host
- /// path for current user and current host
- /// the object that serves as a value to $profile
+ /// used from test not to overwrite the profile file names from development boxes.
+ /// path for all users and all hosts.
+ /// path for current user and all hosts.
+ /// path for all users current host.
+ /// path for current user and current host.
+ /// the object that serves as a value to $profile.
///
internal static void GetProfileObjectData(string shellId, bool useTestProfile, out string allUsersAllHosts, out string allUsersCurrentHost, out string currentUserAllHosts, out string currentUserCurrentHost, out PSObject dollarProfile)
{
@@ -125,7 +125,7 @@ internal static void GetProfileObjectData(string shellId, bool useTestProfile, o
/// Gets an array of commands that can be run sequentially to set $profile and run the profile commands.
///
/// The id identifying the host or shell used in profile file names.
- /// used from test not to overwrite the profile file names from development boxes
+ /// used from test not to overwrite the profile file names from development boxes.
///
internal static PSCommand[] GetProfileCommands(string shellId, bool useTestProfile)
{
@@ -160,7 +160,7 @@ internal static PSCommand[] GetProfileCommands(string shellId, bool useTestProfi
///
/// Used to get all profile file names for the current or all hosts and for the current or all users.
///
- /// null for all hosts, not null for the specified host
+ /// null for all hosts, not null for the specified host.
/// false for all users, true for the current user.
/// The profile file name matching the parameters.
internal static string GetFullProfileFileName(string shellId, bool forCurrentUser)
@@ -171,9 +171,9 @@ internal static string GetFullProfileFileName(string shellId, bool forCurrentUse
///
/// Used to get all profile file names for the current or all hosts and for the current or all users.
///
- /// null for all hosts, not null for the specified host
+ /// null for all hosts, not null for the specified host.
/// false for all users, true for the current user.
- /// used from test not to overwrite the profile file names from development boxes
+ /// used from test not to overwrite the profile file names from development boxes.
/// The profile file name matching the parameters.
internal static string GetFullProfileFileName(string shellId, bool forCurrentUser, bool useTestProfile)
{
@@ -227,8 +227,8 @@ private static string GetAllUsersFolderPath(string shellId)
///
/// Gets the first lines of .
///
- /// string we want to limit the number of lines
- /// maximum number of lines to be returned
+ /// string we want to limit the number of lines.
+ /// maximum number of lines to be returned.
/// The first lines of .
internal static string GetMaxLines(string source, int maxLines)
{
@@ -880,8 +880,8 @@ internal static RemoteRunspace CreateConfiguredRunspace(
/// provided runspace. It assumes the thread invoking this method is the same that runs all other
/// commands on the provided runspace.
///
- /// Runspace to invoke the command on
- /// Command to invoke
+ /// Runspace to invoke the command on.
+ /// Command to invoke.
/// Collection of command output result objects.
public static Collection InvokeOnRunspace(PSCommand command, Runspace runspace)
{
diff --git a/src/System.Management.Automation/engine/hostifaces/InformationalRecord.cs b/src/System.Management.Automation/engine/hostifaces/InformationalRecord.cs
index f56349eaea4..d55f225c8f2 100644
--- a/src/System.Management.Automation/engine/hostifaces/InformationalRecord.cs
+++ b/src/System.Management.Automation/engine/hostifaces/InformationalRecord.cs
@@ -186,8 +186,8 @@ public WarningRecord(PSObject record)
///
/// Constructor for Fully qualified warning Id.
///
- /// Fully qualified warning Id
- /// Warning message
+ /// Fully qualified warning Id.
+ /// Warning message.
public WarningRecord(string fullyQualifiedWarningId, string message)
: base(message)
{
@@ -197,8 +197,8 @@ public WarningRecord(string fullyQualifiedWarningId, string message)
///
/// Constructor for Fully qualified warning Id.
///
- /// Fully qualified warning Id
- /// Warning serialized object
+ /// Fully qualified warning Id.
+ /// Warning serialized object.
public WarningRecord(string fullyQualifiedWarningId, PSObject record)
: base(record)
{
@@ -260,4 +260,4 @@ public VerboseRecord(PSObject record)
: base(record)
{ }
}
-}
\ No newline at end of file
+}
diff --git a/src/System.Management.Automation/engine/hostifaces/InternalHostUserInterface.cs b/src/System.Management.Automation/engine/hostifaces/InternalHostUserInterface.cs
index e81e5b38fe0..36116c20682 100644
--- a/src/System.Management.Automation/engine/hostifaces/InternalHostUserInterface.cs
+++ b/src/System.Management.Automation/engine/hostifaces/InternalHostUserInterface.cs
@@ -346,7 +346,7 @@ internal void WriteDebugRecord(DebugRecord record)
///
/// Writes the DebugRecord to informational buffers.
///
- /// DebugRecord
+ /// DebugRecord.
internal void WriteDebugInfoBuffers(DebugRecord record)
{
if (_informationalBuffers != null)
@@ -599,7 +599,7 @@ internal void WriteVerboseRecord(VerboseRecord record)
///
/// Writes the VerboseRecord to informational buffers.
///
- /// VerboseRecord
+ /// VerboseRecord.
internal void WriteVerboseInfoBuffers(VerboseRecord record)
{
if (_informationalBuffers != null)
@@ -643,7 +643,7 @@ internal void WriteWarningRecord(WarningRecord record)
///
/// Writes the WarningRecord to informational buffers.
///
- /// WarningRecord
+ /// WarningRecord.
internal void WriteWarningInfoBuffers(WarningRecord record)
{
if (_informationalBuffers != null)
@@ -669,7 +669,7 @@ internal void WriteInformationRecord(InformationRecord record)
///
/// Writes the InformationRecord to informational buffers.
///
- /// WarningRecord
+ /// WarningRecord.
internal void WriteInformationInfoBuffers(InformationRecord record)
{
if (_informationalBuffers != null)
diff --git a/src/System.Management.Automation/engine/hostifaces/ListModifier.cs b/src/System.Management.Automation/engine/hostifaces/ListModifier.cs
index 1b5f5477f99..f09376c488a 100644
--- a/src/System.Management.Automation/engine/hostifaces/ListModifier.cs
+++ b/src/System.Management.Automation/engine/hostifaces/ListModifier.cs
@@ -35,8 +35,8 @@ public PSListModifier()
///
/// Create a new PSListModifier with the specified add and remove lists.
///
- /// The items to remove
- /// The items to add
+ /// The items to remove.
+ /// The items to add.
public PSListModifier(Collection