ISfcScriptCollector.OpenWriter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OpenWriter<T>() |
Opens writer of the supplied type |
OpenWriter<T>(Boolean) |
Opens or Reopens writer of the supplied type |
OpenWriter<T>()
Opens writer of the supplied type
public T OpenWriter<T> ();
abstract member OpenWriter : unit -> 'T
Public Function OpenWriter(Of T) () As T
Type Parameters
- T
type of the writer
Returns
T
Applies to
OpenWriter<T>(Boolean)
Opens or Reopens writer of the supplied type
public T OpenWriter<T> (bool append);
abstract member OpenWriter : bool -> 'T
Public Function OpenWriter(Of T) (append As Boolean) As T
Type Parameters
- T
type of the writer
Parameters
- append
- Boolean
indicates that previous writer of the same type should be reused
Returns
T