OffsetEditSequence ClassC# API
Objects of this class contains a sequence of one or more edit instructions. Each instruction in turn replaces data at a particular offset in a string.
Inheritance Hierarchy

System Object
  Facilita.Web OffsetEditSequence

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public class OffsetEditSequence : IDisposable
Remarks

A number of bytes is removed from the string at the offset point, and the replacement string inserted. The replacement string can be a different length to the bytes removed.

An OffsetEditSequence object is often used with the SetMessageBodyFromFile(String) method to edit the contents of a data file used as post data in a POST request. It is useful when the POST data is very large or contains binary data, and must be edited dynamically during the test run.

See Also