23 references to Item
System.Data.Services (23)
System\Data\Services\Epm\EpmCustomContentDeSerializer.cs (1)
41foreach (SyndicationElementExtension extension in this.Item.ElementExtensions)
System\Data\Services\Epm\EpmSyndicationContentDeSerializer.cs (22)
56if (this.Item.Authors.Count > 0) 58resourceType.SetEpmValue(newRoot, element, this.Item.Authors[0].Email, this); 63if (this.Item.Authors.Count > 0) 65resourceType.SetEpmValue(newRoot, element, this.Item.Authors[0].Name, this); 70if (this.Item.Authors.Count > 0) 72resourceType.SetEpmValue(newRoot, element, this.Item.Authors[0].Uri, this); 77if (this.Item.Contributors.Count > 0) 79resourceType.SetEpmValue(newRoot, element, this.Item.Contributors[0].Email, this); 84if (this.Item.Contributors.Count > 0) 86resourceType.SetEpmValue(newRoot, element, this.Item.Contributors[0].Name, this); 91if (this.Item.Contributors.Count > 0) 93resourceType.SetEpmValue(newRoot, element, this.Item.Contributors[0].Uri, this); 102if (this.Item.LastUpdatedTime > DateTimeOffset.MinValue) 104resourceType.SetEpmValue(newRoot, element, XmlConvert.ToString(this.Item.LastUpdatedTime), this); 109if (this.Item.PublishDate > DateTimeOffset.MinValue) 111resourceType.SetEpmValue(newRoot, element, XmlConvert.ToString(this.Item.PublishDate), this); 116if (this.Item.Copyright != null) 118resourceType.SetEpmValue(newRoot, element, this.Item.Copyright.Text, this); 123if (this.Item.Summary != null) 125resourceType.SetEpmValue(newRoot, element, this.Item.Summary.Text, this); 130if (this.Item.Title != null) 132resourceType.SetEpmValue(newRoot, element, this.Item.Title.Text, this);