1 write to contentPropertySerializer
System.Workflow.ComponentModel (1)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (1)
2892
this.
contentPropertySerializer
= this.serializationManager.GetSerializer(this.contentProperty.PropertyType, typeof(WorkflowMarkupSerializer)) as WorkflowMarkupSerializer;
8 references to contentPropertySerializer
System.Workflow.ComponentModel (8)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (8)
2893
if (this.
contentPropertySerializer
!= null)
2931
this.
contentPropertySerializer
.OnBeforeDeserialize(this.serializationManager, contentPropertyValue);
2932
this.
contentPropertySerializer
.OnBeforeDeserializeContents(this.serializationManager, contentPropertyValue);
2951
if (reader != null && this.contentProperty != null && this.
contentPropertySerializer
!= null)
2957
this.
contentPropertySerializer
.OnAfterDeserialize(this.serializationManager, contentPropertyValue);
3005
else if (this.
contentPropertySerializer
!= null)
3022
this.
contentPropertySerializer
.AddChild(this.serializationManager, propertyValue, contentInfo.Content);
3047
content = this.
contentPropertySerializer
.DeserializeFromString(this.serializationManager, this.contentProperty.PropertyType, content as string);