SyndicationPerson.Email プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SyndicationPerson の電子メール アドレスを取得または設定します。
public:
property System::String ^ Email { System::String ^ get(); void set(System::String ^ value); };
public string Email { get; set; }
member this.Email : string with get, set
Public Property Email As String
プロパティ値
ユーザーの電子メール アドレス。
例
SyndicationPerson インスタンスの電子メール アドレスを設定する方法を次のコードに示します。
SyndicationPerson sp = new SyndicationPerson();
sp.Email = "jesper@contoso.com";
Dim sp As New SyndicationPerson()
sp.Email = "jesper@contoso.com"
Email を Atom 1.0 にシリアル化する方法を次の XML に示します。
<author>
<name>Jesper Aaberg</name>
<uri>http://Jesper/Aaberg</uri>
<email>Jesper.Aaberg@contoso.com</email>
</author>
<contributor>
<name>Lene Aalling</name>
<uri>http://Lene/Aaling</uri>
<email>Lene.Aaling@contoso.com</email>
</contributor>
Email を RSS 2.0 にシリアル化する方法を次の XML に示します。
<a10:author>
<a10:name>Lene Aalling</a10:name>
<a10:uri>http://Lene/Aalling</a10:uri>
<a10:email>Lene.Aalling@contoso.com</a10:email>
</a10:author>
<a10:contributor>
<a10:name>Jesper Aaberg</a10:name>
<a10:uri>http://Jesper/Aaberg</a10:uri>
<a10:email>Jesper.Aaberg@contoso.com</a10:email>
</a10:contributor>
注釈
Atom 1.0 にシリアル化する場合、SyndicationPerson プロパティは <email>
要素として書き込まれます。
<email>
要素は、<author>
要素または <contributor>
要素内に記述できます。これは、SyndicationPerson が追加されるコレクション (作成者または投稿者) によって異なります。
RSS 2.0 にシリアル化する場合、この値は <a10:email>
要素として書き込まれます。
<a10:email>
要素は、<managingEditor>
要素、<a10:author>
要素、または <a10:contributor>
要素内に記述できます。 1 つの SyndicationPerson のみを作成者コレクションに追加する場合、<email>
要素は <managingEditor>
要素内に書き込まれます。 複数の SyndicationPerson を作成者コレクションに追加する場合は、<email>
要素が <a10:author>
要素内に書き込まれます。
SyndicationPerson を投稿者コレクションに追加する場合は、<email>
要素が <a10:contributor>
要素内に書き込まれます。
適用対象
.NET