ExportCsvCommand.NoTypeInformation Property
Gets and sets the value of the NoTypeInformation parameter of the Export-Csv cmdlet.
Namespace: Microsoft.PowerShell.Commands
Assembly: Microsoft.PowerShell.Commands.Utility (in microsoft.powershell.commands.utility.dll)
Usage
Syntax
'Declaration
<ParameterAttribute> _
Public Property NoTypeInformation As SwitchParameter
[ParameterAttribute]
public SwitchParameter NoTypeInformation { get; set; }
[ParameterAttribute]
public:
property SwitchParameter NoTypeInformation {
SwitchParameter get ();
void set (SwitchParameter value);
}
/** @property */
public SwitchParameter get_NoTypeInformation ()
/** @property */
public void set_NoTypeInformation (SwitchParameter value)
public function get NoTypeInformation () : SwitchParameter
public function set NoTypeInformation (value : SwitchParameter)
Property Value
If this parameter is specified, the cmdlet omits the #TYPE header from the CSV file. If this parameter is not specified, the first line of the CSV file contains the string "#TYPE " followed by the fully qualified name of the type of the object.
Remarks
This topic is included in this SDK for completeness only. For more information about the Export-Csv cmdlet, use the following command to access online Help:
PS>get-help export-csv
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2008, Windows Vista, Windows Server 2003, Windows XP
Target Platforms
Windows Server 2008, Windows Server 2003, Windows Vista, Windows XP
See Also
Reference
ExportCsvCommand Class
ExportCsvCommand Members
Microsoft.PowerShell.Commands Namespace
Other Resources
Windows PowerShell Programmer's Guide
Windows PowerShell SDK