SyndicationTextInput Class

Definition

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 textInput feed item.

Link

Gets or sets the url of the textInput feed item.

Name

Gets or sets the name of the textInput feed item.

Title

Gets or sets the title of the textInput feed item.

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)

Applies to