System.ServiceModel.Dispatcher.WebMessageFormatter.WrappedBodyWriter.OnWriteBodyContents C# (CSharp) Method

OnWriteBodyContents() protected method

protected OnWriteBodyContents ( XmlDictionaryWriter writer ) : void
writer System.Xml.XmlDictionaryWriter
return void
			protected override void OnWriteBodyContents (XmlDictionaryWriter writer)
			{
				switch (fmt) {
				case WebContentFormat.Raw:
					WriteRawContents (writer);
					break;
				case WebContentFormat.Json:
					WriteJsonBodyContents (writer);
					break;
				case WebContentFormat.Xml:
					WriteXmlBodyContents (writer);
					break;
				}
			}