2 writes to Length
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1078link.Length = length;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
791link.Length = !string.IsNullOrEmpty(val) ? Convert.ToInt64(val, CultureInfo.InvariantCulture.NumberFormat) : 0;
4 references to Length
System.ServiceModel (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
499if (link.Length != 0 && !link.AttributeExtensions.ContainsKey(Atom10Length)) 501writer.WriteAttributeString(Atom10Constants.LengthTag, Convert.ToString(link.Length, CultureInfo.InvariantCulture));
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1446if (link.Length != 0 && !link.AttributeExtensions.ContainsKey(Rss20Length)) 1448writer.WriteAttributeString(Rss20Constants.LengthTag, Rss20Constants.Rss20Namespace, Convert.ToString(link.Length, CultureInfo.InvariantCulture));