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