2 writes to InternalTextInput
System.ServiceModel.Syndication (2)
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
240get => InternalTextInput ??= TryReadTextInputFromExtension(ElementExtensions); 241set => InternalTextInput = value;
6 references to InternalTextInput
System.ServiceModel.Syndication (6)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (5)
962if (Feed.InternalTextInput != null) 966writer.WriteElementString(Rss20Constants.DescriptionTag, Feed.InternalTextInput.Description); 967writer.WriteElementString(Rss20Constants.TitleTag, Feed.InternalTextInput.Title); 968writer.WriteElementString(Rss20Constants.LinkTag, Feed.InternalTextInput.Link.GetAbsoluteUri().ToString()); 969writer.WriteElementString(Rss20Constants.NameTag, Feed.InternalTextInput.Name);
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
512return InternalTextInput != null;