XamlObjectWriter.WriteStartObject(XamlType) 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.
Writes an object node into the current scope, and sets the scope to a new object scope.
public:
override void WriteStartObject(System::Xaml::XamlType ^ xamlType);
public override void WriteStartObject (System.Xaml.XamlType xamlType);
override this.WriteStartObject : System.Xaml.XamlType -> unit
Public Overrides Sub WriteStartObject (xamlType As XamlType)
Parameters
- xamlType
- XamlType
The type to write. Typically you obtain this value from a XAML reader.
Exceptions
Processing an IsUnknown type and cannot create an object.
-or-
Attempted to write a start object in an invalid scope.
Attempted to write a root object when the root object was already provided in the settings.
xamlType
is null
.
Notes to Inheritors
If the current scope is inside a collection, dictionary, or array, the new instance should be added to the collection, dictionary, or array by using the Add
method of the relevant type. Otherwise, the member should be assigned to the new instance.