Aracılığıyla paylaş


SyndicationLink Constructors

Definition

Overloads

SyndicationLink()

Creates a new SyndicationLink object.

SyndicationLink(Uri)

Creates a new SyndicationLink with a Uri.

SyndicationLink(Uri, String, String, String, UInt32)

Creates a new SyndicationLink object with a Uri, Relationship, Title, MediaType, and Length.

Creates a new SyndicationLink object.

public:
 SyndicationLink();
 SyndicationLink();
public SyndicationLink();
function SyndicationLink()
Public Sub New ()

Applies to

Creates a new SyndicationLink with a Uri.

public:
 SyndicationLink(Uri ^ uri);
 SyndicationLink(Uri const& uri);
public SyndicationLink(System.Uri uri);
function SyndicationLink(uri)
Public Sub New (uri As Uri)

Parameters

uri
Uri Uri

The Uri value.

See also

Applies to

Creates a new SyndicationLink object with a Uri, Relationship, Title, MediaType, and Length.

public:
 SyndicationLink(Uri ^ uri, Platform::String ^ relationship, Platform::String ^ title, Platform::String ^ mediaType, unsigned int length);
 SyndicationLink(Uri const& uri, winrt::hstring const& relationship, winrt::hstring const& title, winrt::hstring const& mediaType, uint32_t const& length);
public SyndicationLink(System.Uri uri, string relationship, string title, string mediaType, uint length);
function SyndicationLink(uri, relationship, title, mediaType, length)
Public Sub New (uri As Uri, relationship As String, title As String, mediaType As String, length As UInteger)

Parameters

uri
Uri Uri

The Uri value.

relationship
String

Platform::String

winrt::hstring

The relationship type.

title
String

Platform::String

winrt::hstring

The title of the syndication link.

mediaType
String

Platform::String

winrt::hstring

The MediaType of the syndication link.

length
UInt32

unsigned int

uint32_t

The length, in bytes, of the syndication link.

See also

Applies to