UrlSyndicationContent 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 syndication content that consists of a URL to another resource.
public ref class UrlSyndicationContent : System::ServiceModel::Syndication::SyndicationContent
public class UrlSyndicationContent : System.ServiceModel.Syndication.SyndicationContent
type UrlSyndicationContent = class
inherit SyndicationContent
Public Class UrlSyndicationContent
Inherits SyndicationContent
- Inheritance
Examples
The following example demonstrates how to use the UrlSyndicationContent class.
UrlSyndicationContent urlContent = new UrlSyndicationContent(new Uri("http://localhost/content"), "text/html");
Dim urlContent As UrlSyndicationContent = New UrlSyndicationContent(New Uri("http://localhost/content"), "text/html")
Constructors
UrlSyndicationContent(Uri, String) |
Initializes a new instance of the UrlSyndicationContent class with the specified Uri and media type. |
UrlSyndicationContent(UrlSyndicationContent) |
Initializes a new instance of the UrlSyndicationContent class with the specified UrlSyndicationContent instance. |
Properties
AttributeExtensions |
Gets the attribute extensions for this content. (Inherited from SyndicationContent) |
Type |
Gets the content type of the UrlSyndicationContent. |
Url |
Gets the Uri for the UrlSyndicationContent. |
Methods
Clone() |
Creates a copy of the existing UrlSyndicationContent instance. |
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) |
WriteContentsTo(XmlWriter) |
Writes the contents of the UrlSyndicationContent instance to the specified XmlWriter. |
WriteTo(XmlWriter, String, String) |
Writes the contents of this object to the specified XmlWriter within the specified element and element namespace. (Inherited from SyndicationContent) |