Help_Files/Get-ReversedString-Help.xml
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh"> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Get-ReversedString</command:name> <command:verb>Get</command:verb> <command:noun>ReversedString</command:noun> <maml:description> <maml:para>Reverses the provided input String(s) and returns it/them.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>A simple command for reversing a String in PowerShell in order to show some basics of how to use the language.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Get-ReversedString</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="0" aliases="none"> <maml:name>InputStr</maml:name> <maml:Description> <maml:para>The string to be reversed.</maml:para> </maml:Description> <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue> <dev:type> <maml:name>String[]</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="0" aliases="none"> <maml:name>InputStr</maml:name> <maml:Description> <maml:para>The string to be reversed.</maml:para> </maml:Description> <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue> <dev:type> <maml:name>String[]</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes /> <command:returnValues> <command:returnValue> <dev:type> <maml:name>String</maml:name> </dev:type> <maml:description> <maml:para>If a single String was provided to the command then only a single String is returned.</maml:para> </maml:description> </command:returnValue> <command:returnValue> <dev:type> <maml:name>String[]</maml:name> </dev:type> <maml:description> <maml:para>If a String array is provided to the command, then an array containing the reversed results is returned.</maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>Get-ReversedString -Input "Hello, World!"</dev:code> <dev:remarks> <maml:para></maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> </helpItems> |