SyndicationTextInput Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a "textInput" entry from an RSS syndication feed.
public ref class SyndicationTextInput
public class SyndicationTextInput
type SyndicationTextInput = class
Public Class SyndicationTextInput
- Inheritance
-
SyndicationTextInput
Examples
The following XML shows how SyndicationTextInput is serialized to RSS 2.0.
<textinput>
<description>Search The Web</description>
<title>Search</title>
<link>http://link.to.search.engine/search?</link>
<name>q</name>
</textinput>
Remarks
The RSS specification allows for a 'textInput' item to be included within a syndication feed that the publisher can use to direct search requests or obtain feedback through a simple text input box and button. A 'textInput' element in an RSS feed must contain 4 sub-elements:
- title
- description
- name
- link
See the RSS spec for more detail.
Constructors
SyndicationTextInput() |
Initializes a new instance of the SyndicationTextInput class. |
Properties
Description |
Gets or sets the description of the |
Link |
Gets or sets the url of the |
Name |
Gets or sets the name of the |
Title |
Gets or sets the title of the |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |