DocDataTextReader Constructor (DocData, Boolean)
Initializes a new instance of DocDataTextReader for the specified doc data object and determines whether Dispose will be called on the docData when the DocDataTextReader is disposed.
Namespace: Microsoft.VisualStudio.Shell.Design.Serialization
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Sub New ( _
docData As DocData, _
disposeDocData As Boolean _
)
public DocDataTextReader(
DocData docData,
bool disposeDocData
)
public:
DocDataTextReader(
DocData^ docData,
bool disposeDocData
)
new :
docData:DocData *
disposeDocData:bool -> DocDataTextReader
public function DocDataTextReader(
docData : DocData,
disposeDocData : boolean
)
Parameters
docData
Type: Microsoft.VisualStudio.Shell.Design.Serialization.DocDataThe DocData that the DocDataTextReader reads.
disposeDocData
Type: BooleanIf true, Dispose will be called on the underlying docData.
Remarks
The doc data object must implement IVsTextStream or an exception will be thrown. When this object is either disposed or closed, it will call Dispose on the underlying doc data object if disposeDocData is true. The default value for disposeDocData is false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.