System.Xaml.XamlWriterInternalBase.WriteStartObject C# (CSharp) Method

WriteStartObject() public method

public WriteStartObject ( XamlType xamlType ) : void
xamlType XamlType
return void
		public void WriteStartObject (XamlType xamlType)
		{
			if (xamlType == null)
				throw new ArgumentNullException ("xamlType");

			manager.StartObject ();

			var cstate = new ObjectState () {Type = xamlType};
			object_states.Push (cstate);

			OnWriteStartObject ();
		}