SyndicationPerson Constructors

Definition

Overloads

SyndicationPerson()

Creates a SyndicationPerson object.

SyndicationPerson(String)

Creates a SyndicationPerson object with the specified Name property value.

SyndicationPerson(String, String, Uri)

Creates a SyndicationPerson object with the specified Name, Email, and Uri property values.

SyndicationPerson()

Creates a SyndicationPerson object.

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

Applies to

SyndicationPerson(String)

Creates a SyndicationPerson object with the specified Name property value.

public:
 SyndicationPerson(Platform::String ^ name);
 SyndicationPerson(winrt::hstring const& name);
public SyndicationPerson(string name);
function SyndicationPerson(name)
Public Sub New (name As String)

Parameters

name
String

Platform::String

winrt::hstring

The name of the SyndicationPerson. This parameter represents the atom:name element.

See also

Applies to

SyndicationPerson(String, String, Uri)

Creates a SyndicationPerson object with the specified Name, Email, and Uri property values.

public:
 SyndicationPerson(Platform::String ^ name, Platform::String ^ email, Uri ^ uri);
 SyndicationPerson(winrt::hstring const& name, winrt::hstring const& email, Uri const& uri);
public SyndicationPerson(string name, string email, System.Uri uri);
function SyndicationPerson(name, email, uri)
Public Sub New (name As String, email As String, uri As Uri)

Parameters

name
String

Platform::String

winrt::hstring

The name of the SyndicationPerson. This parameter represents the atom:name element.

email
String

Platform::String

winrt::hstring

Gets or sets the email address of the person. This property represents the atom:email element.

uri
Uri Uri

Gets or sets the Uniform Resource Identifier (URI) of the person. This property represents the atom:uri element. It is the absolute URI resolved against the xml:base attribute, if it is present. If the href attribute is a relative URI string and there is no xml:base attribute, this property is NULL because relative URI is not supported by the runtime URI class.

See also

Applies to