[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

If 0xff 0xfe BOM is in the beginning of the input byte stream, it will be stripped

Namespace:  Microsoft.ConfigurationManagement.Messaging.Framework
Assembly:  Microsoft.ConfigurationManagement.Messaging(in Microsoft.ConfigurationManagement.Messaging.dll)

Syntax

                 
  C#     Visual Basic     Visual C++  
public 
static 
byte[] 
StripBom(
	
byte[] 
inputData
)
Public 
Shared 
Function 
StripBom ( _
	
inputData 
As 
Byte() _
) 
As 
Byte()
public:
static 
array<
unsigned char>^ 
StripBom(
	
array<
unsigned char>^ 
inputData
)

Parameters

inputData
array< Byte > [] () [] []
Byte array to strip BOM from

Return Value

Byte array with BOM stripped out

See Also