CSVStateMachine.ParseChunk Method

/// Parse a new chunk of text retrieved via some other means than a stream. /// /// Call this function when you are retrieving your own text and when each chunk may or may not /// include line separators, and your stream does not consume line separators on its own. ///
Public Function ParseChunk( _ 
ByVal chunk As String, _ 
ByVal reachedEnd As Boolean
) As String()
This language is not supported or no code example is available.
public string[] ParseChunk( 
string chunk
bool reachedEnd 
)
This language is not supported or no code example is available.
public:  
array< String^ >^ ParseChunk( 
String^ chunk
bool reachedEnd 
)
This language is not supported or no code example is available.
public function ParseChunk( 
chunk : String
reachedEnd : boolean 
) : String[];
This language is not supported or no code example is available.

Parameters

chunk
string

The new data to process

reachedEnd
bool

Set this value to true

Return Value

string[]

If this parsing operation produces a valid row, this will be non-null

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition