1 write to Target
System.Data.Services (1)
System\Data\Services\Epm\EpmContentSerializerBase.cs (1)
67this.Target = target;
13 references to Target
System.Data.Services (13)
System\Data\Services\Epm\EpmCustomContentSerializer.cs (1)
83c.AddContentToTarget(this.Target);
System\Data\Services\Epm\EpmSyndicationContentSerializer.cs (12)
74this.Target.Authors.Add(this.author); 129this.Target.LastUpdatedTime = EpmSyndicationContentSerializer.GetDate(propertyValue, Strings.EpmSerializer_UpdatedHasWrongType); 132this.Target.PublishDate = EpmSyndicationContentSerializer.GetDate(propertyValue, Strings.EpmSerializer_PublishedHasWrongType); 135this.Target.Copyright = new TextSyndicationContent(textPropertyValue, contentKind); 138this.Target.Summary = new TextSyndicationContent(textPropertyValue, contentKind); 141this.Target.Title = new TextSyndicationContent(textPropertyValue, contentKind); 227if (this.Target.Contributors.Count == 0) 229this.Target.Contributors.Add(new SyndicationPerson()); 236this.Target.Contributors[0].Email = textPropertyValue; 239this.Target.Contributors[0].Name = textPropertyValue; 242this.Target.Contributors[0].Uri = textPropertyValue; 249Debug.Assert(this.Target.Contributors.Count == 1, "There should be one and only one contributor.");