|
1082 | 1082 | <ReturnType>System.ServiceModel.Syndication.SyndicationLink</ReturnType>
|
1083 | 1083 | </ReturnValue>
|
1084 | 1084 | <Docs>
|
1085 |
| - <summary>To be added.</summary> |
1086 |
| - <value>To be added.</value> |
1087 |
| - <remarks>To be added.</remarks> |
| 1085 | + <summary>Gets or sets the link to documentation for the feed.</summary> |
| 1086 | + <value>A <see cref="T:System.ServiceModel.Syndication.SyndicationLink" /> instance that contains a link to documentation for the feed.</value> |
| 1087 | + <remarks> |
| 1088 | + <format type="text/markdown"><![CDATA[ |
| 1089 | + |
| 1090 | +## Remarks |
| 1091 | + When serialized to RSS 2.0, the <xref:System.ServiceModel.Syndication.SyndicationFeed.Documentation%2A> property is written to a `<docs>` element. |
| 1092 | + |
| 1093 | + ]]></format> |
| 1094 | + </remarks> |
1088 | 1095 | </Docs>
|
1089 | 1096 | </Member>
|
1090 | 1097 | <Member MemberName="ElementExtensions">
|
|
1231 | 1238 | <Docs>
|
1232 | 1239 | <summary>Gets an <see cref="T:System.ServiceModel.Syndication.Atom10FeedFormatter" /> instance.</summary>
|
1233 | 1240 | <returns>An <see cref="T:System.ServiceModel.Syndication.Atom10FeedFormatter" /> instance.</returns>
|
1234 |
| - <remarks>To be added.</remarks> |
1235 | 1241 | </Docs>
|
1236 | 1242 | </Member>
|
1237 | 1243 | <MemberGroup MemberName="GetRss20Formatter">
|
|
1278 | 1284 | <Docs>
|
1279 | 1285 | <summary>Gets an <see cref="T:System.ServiceModel.Syndication.Rss20FeedFormatter" /> instance.</summary>
|
1280 | 1286 | <returns>An <see cref="T:System.ServiceModel.Syndication.Rss20FeedFormatter" /> instance.</returns>
|
1281 |
| - <remarks>To be added.</remarks> |
1282 | 1287 | </Docs>
|
1283 | 1288 | </Member>
|
1284 | 1289 | <Member MemberName="GetRss20Formatter">
|
|
1924 | 1929 | <ReturnType>System.Collections.ObjectModel.Collection<System.String></ReturnType>
|
1925 | 1930 | </ReturnValue>
|
1926 | 1931 | <Docs>
|
1927 |
| - <summary>To be added.</summary> |
1928 |
| - <value>To be added.</value> |
1929 |
| - <remarks>To be added.</remarks> |
| 1932 | + <summary>Gets a collection of strings indicating the set of values in the 'skipDays' element for the feed.</summary> |
| 1933 | + <value>A collection of strings indicating the days when aggregators should skip updating the feed.</value> |
| 1934 | + <remarks> |
| 1935 | + <format type="text/markdown"><![CDATA[ |
| 1936 | + |
| 1937 | +## Remarks |
| 1938 | + When serialized to RSS 2.0, the <xref:System.ServiceModel.Syndication.SyndicationFeed.SkipDays%2A> property is written to a `<skipDays>` element |
| 1939 | + with subelements for each day in the collection. |
| 1940 | +
|
| 1941 | + |
| 1942 | +## Examples |
| 1943 | + The following XML shows how <xref:System.ServiceModel.Syndication.SyndicationFeed.SkipHours%2A> is serialized to RSS 2.0. |
| 1944 | + |
| 1945 | +```xml |
| 1946 | + <item> |
| 1947 | + <skipDays> |
| 1948 | + <day>Saturday</day> |
| 1949 | + <day>Sunday</day> |
| 1950 | + <day>Wednesday</day> |
| 1951 | + </skipDays> |
| 1952 | + </item> |
| 1953 | +``` |
| 1954 | + ]]></format> |
| 1955 | + </remarks> |
1930 | 1956 | </Docs>
|
1931 | 1957 | </Member>
|
1932 | 1958 | <Member MemberName="SkipHours">
|
|
1953 | 1979 | <ReturnType>System.Collections.ObjectModel.Collection<System.Int32></ReturnType>
|
1954 | 1980 | </ReturnValue>
|
1955 | 1981 | <Docs>
|
1956 |
| - <summary>To be added.</summary> |
1957 |
| - <value>To be added.</value> |
1958 |
| - <remarks>To be added.</remarks> |
| 1982 | + <summary>Gets a collection of integers indicating the set of values in the 'skipHours' element for the feed.</summary> |
| 1983 | + <value>A collection of integer numbers indicating the hours where aggregators should skip updating the feed.</value> |
| 1984 | + <remarks> |
| 1985 | + <format type="text/markdown"><![CDATA[ |
| 1986 | + |
| 1987 | +## Remarks |
| 1988 | + When serialized to RSS 2.0, the <xref:System.ServiceModel.Syndication.SyndicationFeed.SkipHours%2A> property is written to a `<skipHours>` element |
| 1989 | + with subelements for each integer in the collection. Valid integer values are between 0 and 23 inclusive. |
| 1990 | +
|
| 1991 | + |
| 1992 | +## Examples |
| 1993 | + The following XML shows how <xref:System.ServiceModel.Syndication.SyndicationFeed.SkipHours%2A> is serialized to RSS 2.0. |
| 1994 | + |
| 1995 | +```xml |
| 1996 | + <item> |
| 1997 | + <skipHours> |
| 1998 | + <hour>0</hour> |
| 1999 | + <hour>1</hour> |
| 2000 | + <hour>2</hour> |
| 2001 | + <hour>3</hour> |
| 2002 | + <hour>4</hour> |
| 2003 | + <hour>5</hour> |
| 2004 | + <hour>6</hour> |
| 2005 | + <hour>7</hour> |
| 2006 | + <hour>18</hour> |
| 2007 | + <hour>19</hour> |
| 2008 | + <hour>20</hour> |
| 2009 | + <hour>21</hour> |
| 2010 | + <hour>22</hour> |
| 2011 | + <hour>23</hour> |
| 2012 | + </skipHours> |
| 2013 | + </item> |
| 2014 | +``` |
| 2015 | + ]]></format> |
| 2016 | + </remarks> |
1959 | 2017 | </Docs>
|
1960 | 2018 | </Member>
|
1961 | 2019 | <Member MemberName="TextInput">
|
|
1982 | 2040 | <ReturnType>System.ServiceModel.Syndication.SyndicationTextInput</ReturnType>
|
1983 | 2041 | </ReturnValue>
|
1984 | 2042 | <Docs>
|
1985 |
| - <summary>To be added.</summary> |
1986 |
| - <value>To be added.</value> |
1987 |
| - <remarks>To be added.</remarks> |
| 2043 | + <summary>Gets or sets the TextInput property for the feed.</summary> |
| 2044 | + <value>A <see cref="T:System.ServiceModel.Syndication.SyndicationTextInput" /> instance that contains required parameters for the RSS <c>textInput</c> item for the feed.</value> |
| 2045 | + <remarks> |
| 2046 | + <format type="text/markdown"><![CDATA[ |
| 2047 | + |
| 2048 | +## Remarks |
| 2049 | + The RSS specification allows for a `textInput` item to be included within a syndication feed that the publisher can use |
| 2050 | + to direct search requests or obtain feedback through a simple text input box and button. See <xref:System.ServiceModel.Syndication.SyndicationTextInput> |
| 2051 | + for more detail. If the `textInput` element is incomplete, malformed, or missing, then <xref:System.ServiceModel.Syndication.SyndicationFeed.TextInput%2A> will be `null`. |
| 2052 | +
|
| 2053 | + ]]></format> |
| 2054 | + </remarks> |
1988 | 2055 | </Docs>
|
1989 | 2056 | </Member>
|
1990 | 2057 | <Member MemberName="TimeToLive">
|
|
2011 | 2078 | <ReturnType>System.Nullable<System.TimeSpan></ReturnType>
|
2012 | 2079 | </ReturnValue>
|
2013 | 2080 | <Docs>
|
2014 |
| - <summary>To be added.</summary> |
2015 |
| - <value>To be added.</value> |
2016 |
| - <remarks>To be added.</remarks> |
| 2081 | + <summary>Gets or sets the 'ttl' attribute for the feed.</summary> |
| 2082 | + <value>A integer number indicating the number of minutes the feed can stay cached before refreshing it from the source.</value> |
| 2083 | + <remarks> |
| 2084 | + <format type="text/markdown"><![CDATA[ |
| 2085 | + |
| 2086 | +## Remarks |
| 2087 | + When serialized to RSS 2.0, the <xref:System.ServiceModel.Syndication.SyndicationFeed.TimeToLive%2A> property is written to a `<ttl>` element. |
| 2088 | + |
| 2089 | + ]]></format> |
| 2090 | + </remarks> |
2017 | 2091 | </Docs>
|
2018 | 2092 | </Member>
|
2019 | 2093 | <Member MemberName="Title">
|
|
0 commit comments