2 writes to Length
System.ServiceModel.Syndication (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
985link.Length = length;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
533link.Length = !string.IsNullOrEmpty(val) ? Convert.ToInt64(val, CultureInfo.InvariantCulture.NumberFormat) : 0;
4 references to Length
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
480if (link.Length != 0 && !link.AttributeExtensions.ContainsKey(s_atom10Length)) 482writer.WriteAttributeString(Atom10Constants.LengthTag, link.Length.ToString(CultureInfo.InvariantCulture));
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1183if (link.Length != 0 && !link.AttributeExtensions.ContainsKey(s_rss20Length)) 1185writer.WriteAttributeString(Rss20Constants.LengthTag, Rss20Constants.Rss20Namespace, link.Length.ToString(CultureInfo.InvariantCulture));