Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,360 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="ContentDisposition" FullName="System.Net.Mime.ContentDisposition">
<TypeSignature Language="C#" Value="public class ContentDisposition" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit ContentDisposition extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The information in the <see cref="T:System.Net.Mime.ContentDisposition" /> class accompanies an e-mail message that contains attachments when the e-mail message is sent to its destination. The information in <see cref="T:System.Net.Mime.ContentDisposition" /> can be used by software that displays e-mail to present the e-mail attachments in the manner intended by the sender. </para>
<para>E-mail messages are created using instances of the <see cref="T:System.Net.Mail.MailMessage" /> class. Instances of the <see cref="T:System.Net.Mail.Attachment" /> class are used to add attachments to e-mail messages. To modify the <see cref="T:System.Net.Mime.ContentDisposition" /> for an attachment, get the instance from the <see cref="P:System.Net.Mail.Attachment.ContentDisposition" /> property.</para>
<para>Content to be displayed as part of the message body has the disposition type of <see cref="P:System.Net.Mime.ContentDisposition.Inline" />. Content that is not displayed but is attached in a separate file has the disposition type of <see cref="F:System.Net.Mime.DispositionTypeNames.Attachment" />. Use the <see cref="P:System.Net.Mime.ContentDisposition.Inline" /> property to control the disposition type for the attachment associated with an instance of <see cref="T:System.Net.Mime.ContentDisposition" />.</para>
<para>For file attachments, you can use the properties of the <see cref="T:System.Net.Mime.ContentDisposition" /> to set the file size, as well as the date the file was created, last read, and last modified. For all attachments, you can set a recommended file name in the event that the attachment is stored on the receiving computer.</para>
<para>The <see cref="M:System.Net.Mime.ContentDisposition.ToString" /> method returns the Content-Disposition header. The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents a MIME protocol Content-Disposition header.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ContentDisposition ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The instance returned by this constructor has the <see cref="P:System.Net.Mime.ContentDisposition.DispositionType" /> property set to <see cref="F:System.Net.Mime.DispositionTypeNames.Attachment" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Net.Mime.ContentDisposition" /> class with a <see cref="P:System.Net.Mime.ContentDisposition.DispositionType" /> of <see cref="F:System.Net.Mime.DispositionTypeNames.Attachment" />. </para>
</summary>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ContentDisposition (string disposition);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string disposition) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="disposition" Type="System.String" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Net.Mime.ContentDisposition" /> class with the specified disposition information.</para>
</summary>
<param name="disposition">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Net.Mime.DispositionTypeNames" /> value that contains the disposition.</param>
</Docs>
</Member>
<Member MemberName="CreationDate">
<MemberSignature Language="C#" Value="public DateTime CreationDate { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.DateTime CreationDate" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.CreationDate" /> property is used to send time stamp information with a file being sent in an e-mail message. This value sets the Creation-Date parameter in the Content-Disposition header sent with the email. </para>
<para>The <see cref="T:System.Net.Mail.MailMessage" /> class is used to compose an e-mail message. The <see cref="T:System.Net.Mail.Attachment" /> class is used to attach a file to an e-mail message. To set <see cref="P:System.Net.Mime.ContentDisposition.CreationDate" />, get the <see cref="T:System.Net.Mime.ContentDisposition" /> for the attachment from the <see cref="P:System.Net.Mail.Attachment.ContentDisposition" /> property.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the creation date for a file attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="DispositionType">
<MemberSignature Language="C#" Value="public string DispositionType { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string DispositionType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.DispositionType" /> property value can be used by software that displays e-mail to determine the correct way to present the e-mail attachments. <see cref="F:System.Net.Mime.DispositionTypeNames.Inline" /> attachments are usually displayed when the user opens the e-mail. <see cref="F:System.Net.Mime.DispositionTypeNames.Attachment" /> attachments are usually not opened until the user performs some action, such as clicking an icon that represents the attachment.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the disposition type for an e-mail attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public override bool Equals (object obj);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(object obj) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object" />
</Parameters>
<Docs>
<param name="obj">To be added.</param>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines whether the content-disposition header of the specified <see cref="T:System.Net.Mime.ContentDisposition" /> object is equal to the content-disposition header of this object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>true if the content-disposition headers are the same; otherwise false.</para>
</returns>
</Docs>
</Member>
<Member MemberName="FileName">
<MemberSignature Language="C#" Value="public string FileName { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string FileName" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.FileName" /> property allows the sender to suggest the name to be used to store an e-mail attachment on the recipient's computer. This name is a suggestion only; the receiving system can ignore it. The name must not include path information; any such information is ignored by the receiving computer. </para>
<para>To remove file name information, you can set this property to null or the empty string ("").</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the suggested file name for an e-mail attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public override int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines the hash code of the specified <see cref="T:System.Net.Mime.ContentDisposition" /> object</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An integer hash value.</para>
</returns>
</Docs>
</Member>
<Member MemberName="Inline">
<MemberSignature Language="C#" Value="public bool Inline { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool Inline" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.Inline" /> property sets the disposition type in the Content-Disposition header sent with the e-mail message. The disposition type can be used by software that displays e-mail to determine the correct way to present the e-mail attachments. Attachments with a disposition type of <see cref="F:System.Net.Mime.DispositionTypeNames.Inline" /> are usually displayed when the user opens the e-mail. Attachments with a disposition type of <see cref="F:System.Net.Mime.DispositionTypeNames.Attachment" /> are usually not opened until the user performs some additional action, such as clicking an icon that represents the attachment.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a <see cref="T:System.Boolean" /> value that determines the disposition type (Inline or Attachment) for an e-mail attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ModificationDate">
<MemberSignature Language="C#" Value="public DateTime ModificationDate { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.DateTime ModificationDate" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.ModificationDate" /> property is used to send time stamp information with a file being sent in an e-mail message. This value sets the Modification-Date parameter in the Content-Disposition header sent with the e-mail message. </para>
<para>The <see cref="T:System.Net.Mail.MailMessage" /> class is used to compose an e-mail message. The <see cref="T:System.Net.Mail.Attachment" /> class is used to attach a file to an e-mail message. To set the <see cref="P:System.Net.Mime.ContentDisposition.ModificationDate" /> property, get the <see cref="T:System.Net.Mime.ContentDisposition" /> for the attachment using the <see cref="P:System.Net.Mail.Attachment.ContentDisposition" /> property.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the modification date for a file attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Parameters">
<MemberSignature Language="C#" Value="public System.Collections.Specialized.StringDictionary Parameters { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Specialized.StringDictionary Parameters" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Specialized.StringDictionary</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, the parameters are determined by the property values so you do not need to access them. If you need to add or change parameter information, modify the dictionary returned by the <see cref="P:System.Net.Mime.ContentDisposition.Parameters" /> property.</para>
<para>The Content-Disposition header is described in RFC 2183, available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the parameters included in the Content-Disposition header represented by this instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ReadDate">
<MemberSignature Language="C#" Value="public DateTime ReadDate { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.DateTime ReadDate" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.ReadDate" /> property is used to send time stamp information with a file being sent in an e-mail message. This value sets the Read-Date parameter in the Content-Disposition header sent with the e-mail message. </para>
<para>The <see cref="T:System.Net.Mail.MailMessage" /> class is used to compose an e-mail message. The <see cref="T:System.Net.Mail.Attachment" /> class is used to attach a file to an e-mail message. To set <see cref="P:System.Net.Mime.ContentDisposition.ReadDate" />, get the <see cref="T:System.Net.Mime.ContentDisposition" /> for the attachment by using the <see cref="P:System.Net.Mail.Attachment.ContentDisposition" /> property.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the read date for a file attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Size">
<MemberSignature Language="C#" Value="public long Size { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 Size" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Net.Mime.ContentDisposition.Size" /> property is used to send time stamp information with a file being sent in an e-mail message. The <see cref="T:System.Net.Mail.MailMessage" /> class is used to compose the message. The <see cref="T:System.Net.Mail.Attachment" /> class is used to attach a file to an e-mail message.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the size of a file attachment.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ToString">
<MemberSignature Language="C#" Value="public override string ToString ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The string returned by the <see cref="M:System.Net.Mime.ContentDisposition.ToString" /> method is the Content-Disposition header.</para>
<para>The Content-Disposition header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns a <see cref="T:System.String" /> representation of this instance.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.String" /> that contains the property values for this instance.</para>
</returns>
</Docs>
</Member>
</Members>
</Type>

View File

@@ -0,0 +1,290 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="ContentType" FullName="System.Net.Mime.ContentType">
<TypeSignature Language="C#" Value="public class ContentType" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit ContentType extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The information in the <see cref="T:System.Net.Mime.ContentType" /> class is used to describe the data contained in an e-mail message in such a way that software that displays e-mail can present the content in an appropriate manner. <see cref="T:System.Net.Mime.ContentType" /> is used with the <see cref="T:System.Net.Mail.Attachment" /> class to specify the type of content in the attachment.</para>
<para>The syntax of the Content-Type header is described in RFC 2045 Section 5.1. RFC 2046 provides detailed information about MIME media types and their parameters. These RFCs are available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents a MIME protocol Content-Type header.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ContentType ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This constructor initializes the <see cref="P:System.Net.Mime.ContentType.MediaType" /> property to "application/octet-stream".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new default instance of the <see cref="T:System.Net.Mime.ContentType" /> class. </para>
</summary>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ContentType (string contentType);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string contentType) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="contentType" Type="System.String" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The syntax of the <paramref name="contentType" /> string is described in RFC 2045 Section 5.1 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Net.Mime.ContentType" /> class using the specified string. </para>
</summary>
<param name="contentType">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.String" />, for example, "text/plain; charset=us-ascii", that contains the MIME media type, subtype, and optional parameters.</param>
</Docs>
</Member>
<Member MemberName="Boundary">
<MemberSignature Language="C#" Value="public string Boundary { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Boundary" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In the following example of a Content-Type header, the value of the <see cref="P:System.Net.Mime.ContentType.Boundary" /> parameter is "-----boundary---0".</para>
<para>content-type: multipart/mixed; boundary=-----boundary---0</para>
<para>Set this property to null or <see cref="F:System.String.Empty" /> to remove the boundary information from the header.</para>
<para>The syntax of the Content-Type header is described in RFC 2045 Section 5.1. An in-depth discussion of the boundary parameter is contained in RFC 2046 Section 5.1.1. These RFCs are available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the value of the boundary parameter included in the Content-Type header represented by this instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName="CharSet">
<MemberSignature Language="C#" Value="public string CharSet { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string CharSet" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In the following example of a Content-Type header, the value of the <see cref="P:System.Net.Mime.ContentType.CharSet" /> property is "us-ascii".</para>
<para>content-type: application/x-myType; charset=us-ascii</para>
<para>Set this property to null or <see cref="F:System.String.Empty" /> to remove the charset information from the header.</para>
<para>A grammar that details the syntax of the Content-Type header is described in RFC 2045 Section 5.1. An in-depth discussion of the charset parameter is contained in RFC 2046 Section 4.1.2. These RFCs are available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the value of the charset parameter included in the Content-Type header represented by this instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public override bool Equals (object obj);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(object obj) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object" />
</Parameters>
<Docs>
<param name="obj">To be added.</param>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines whether the content-type header of the specified <see cref="T:System.Net.Mime.ContentType" /> object is equal to the content-type header of this object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>true if the content-type headers are the same; otherwise false.</para>
</returns>
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public override int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines the hash code of the specified <see cref="T:System.Net.Mime.ContentType" /> object</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An integer hash value.</para>
</returns>
</Docs>
</Member>
<Member MemberName="MediaType">
<MemberSignature Language="C#" Value="public string MediaType { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string MediaType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In the following example of a Content-Type header, the value of the <see cref="P:System.Net.Mime.ContentType.MediaType" /> property is "application/x-myType".</para>
<para>content-type: application/x-myType; name=data.xyz</para>
<para>Set this property to null or <see cref="F:System.String.Empty" /> to remove the name information from the header.</para>
<para>The syntax of the Content-Type header is described in RFC 2045 Section 5.1. RFC 2046 provides detailed information on MIME media types. These RFCs are available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the media type value included in the Content-Type header represented by this instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Name">
<MemberSignature Language="C#" Value="public string Name { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Name" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In the following example of a Content-Type header, the value of the <see cref="P:System.Net.Mime.ContentType.Name" /> property is "data.xyz".</para>
<para>content-type: application/x-myType; name=data.xyz</para>
<para>A grammar that details the syntax of the Content-Type header is described in RFC 2045 Section 5.1, available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
<para>When specifying content for a <see cref="T:System.Net.Mail.Attachment" /> as a <see cref="T:System.IO.Stream" /> or <see cref="T:System.String" />, you can use <see cref="P:System.Net.Mime.ContentType.Name" /> to set the name of the file that stores the content on the recipient's system. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the value of the name parameter included in the Content-Type header represented by this instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Parameters">
<MemberSignature Language="C#" Value="public System.Collections.Specialized.StringDictionary Parameters { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Specialized.StringDictionary Parameters" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Specialized.StringDictionary</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>You can set the parameters by specifying the entire Content-Header value when constructing a <see cref="T:System.Net.Mime.ContentType" /> object or you can add parameters to the <see cref="T:System.Collections.Specialized.StringDictionary" /> returned by the <see cref="P:System.Net.Mime.ContentType.Parameters" /> property. </para>
<para>When adding a parameter entry to the dictionary, the name of the parameter is the entry's key and the value of the parameter is the entry's value.</para>
<para>A grammar that details the syntax of the Content-Type header is described in RFC 2045 Section 5.1. RFC 2046 provides detailed information on MIME media types and their associated parameters. These RFCs are available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the dictionary that contains the parameters included in the Content-Type header represented by this instance.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ToString">
<MemberSignature Language="C#" Value="public override string ToString ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="M:System.Net.Mime.ContentType.ToString" /> method contains the string used to create this <see cref="T:System.Net.Mime.ContentType" />, if one was specified and no property values have been changed. If no string was specified, or one or more property values have changed since this <see cref="T:System.Net.Mime.ContentType" /> was created, the value of <see cref="M:System.Net.Mime.ContentType.ToString" /> is a string in the format of a Content-Type header that is composed using the current property values. The string does not include the "Content-type:" prefix.</para>
<para>The syntax of the Content-Type header is described in RFC 2045 Section 5.1, available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns a string representation of this <see cref="T:System.Net.Mime.ContentType" /> object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.String" /> that contains the current settings for this <see cref="T:System.Net.Mime.ContentType" />.</para>
</returns>
</Docs>
</Member>
</Members>
</Type>

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="DispositionTypeNames" FullName="System.Net.Mime.DispositionTypeNames">
<TypeSignature Language="C#" Value="public static class DispositionTypeNames" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit DispositionTypeNames extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The values in this enumeration can be used to set the <see cref="P:System.Net.Mime.ContentDisposition.DispositionType" /> property for an e-mail attachment. The information in the <see cref="T:System.Net.Mime.ContentDisposition" /> class represents the MIME Content-Disposition header. This header is described in RFC 2183 available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Supplies the strings used to specify the disposition type for an e-mail attachment.</para>
</summary>
</Docs>
<Members>
<Member MemberName="Attachment">
<MemberSignature Language="C#" Value="public const string Attachment;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Attachment" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies that the attachment is to be displayed as a file attached to the e-mail message.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Inline">
<MemberSignature Language="C#" Value="public const string Inline;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Inline" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies that the attachment is to be displayed as part of the e-mail message body.</para>
</summary>
</Docs>
</Member>
</Members>
</Type>

View File

@@ -0,0 +1,105 @@
<Type Name="MediaTypeNames+Application" FullName="System.Net.Mime.MediaTypeNames+Application">
<TypeSignature Language="C#" Value="public static class MediaTypeNames.Application" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi abstract sealed beforefieldinit MediaTypeNames/Application extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<Members>
<Member MemberName="Octet">
<MemberSignature Language="C#" Value="public const string Octet;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Octet" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Pdf">
<MemberSignature Language="C#" Value="public const string Pdf;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Pdf" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Rtf">
<MemberSignature Language="C#" Value="public const string Rtf;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Rtf" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Soap">
<MemberSignature Language="C#" Value="public const string Soap;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Soap" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Zip">
<MemberSignature Language="C#" Value="public const string Zip;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Zip" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
</Members>
</Type>

View File

@@ -0,0 +1,71 @@
<Type Name="MediaTypeNames+Image" FullName="System.Net.Mime.MediaTypeNames+Image">
<TypeSignature Language="C#" Value="public static class MediaTypeNames.Image" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi abstract sealed beforefieldinit MediaTypeNames/Image extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<Members>
<Member MemberName="Gif">
<MemberSignature Language="C#" Value="public const string Gif;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Gif" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Jpeg">
<MemberSignature Language="C#" Value="public const string Jpeg;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Jpeg" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Tiff">
<MemberSignature Language="C#" Value="public const string Tiff;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Tiff" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
</Members>
</Type>

View File

@@ -0,0 +1,88 @@
<Type Name="MediaTypeNames+Text" FullName="System.Net.Mime.MediaTypeNames+Text">
<TypeSignature Language="C#" Value="public static class MediaTypeNames.Text" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi abstract sealed beforefieldinit MediaTypeNames/Text extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<Members>
<Member MemberName="Html">
<MemberSignature Language="C#" Value="public const string Html;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Html" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Plain">
<MemberSignature Language="C#" Value="public const string Plain;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Plain" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="RichText">
<MemberSignature Language="C#" Value="public const string RichText;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string RichText" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
<Member MemberName="Xml">
<MemberSignature Language="C#" Value="public const string Xml;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string Xml" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
</Member>
</Members>
</Type>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="MediaTypeNames" FullName="System.Net.Mime.MediaTypeNames">
<TypeSignature Language="C#" Value="public static class MediaTypeNames" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit MediaTypeNames extends System.Object" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies the media type information for an e-mail message attachment.</para>
</summary>
</Docs>
<Members />
</Type>

View File

@@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="TransferEncoding" FullName="System.Net.Mime.TransferEncoding">
<TypeSignature Language="C#" Value="public enum TransferEncoding" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed TransferEncoding extends System.Enum" />
<AssemblyInfo>
<AssemblyName>System</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The values in the <see cref="T:System.Net.Mime.TransferEncoding" /> enumeration are used with the <see cref="P:System.Net.Mail.AttachmentBase.TransferEncoding" /> property.</para>
<para>The Content-Transfer-Encoding header specifies the encoding of the associated message body so that it meets SMTP requirements. SMTP requires data for transport to be in 7-bit US-ASCII characters with lines no longer than 1000 characters. </para>
<para>Content-Transfer-Encoding values are described in detail in RFC 2045 Section 6, available at <see cref="http://www.ietf.org/">http://www.ietf.org</see>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies the Content-Transfer-Encoding header information for an e-mail message attachment.</para>
</summary>
</Docs>
<Members>
<Member MemberName="Base64">
<MemberSignature Language="C#" Value="Base64" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Net.Mime.TransferEncoding Base64 = int32(1)" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Net.Mime.TransferEncoding</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encodes stream-based data. See RFC 2406 Section 6.8.</para>
</summary>
</Docs>
</Member>
<Member MemberName="QuotedPrintable">
<MemberSignature Language="C#" Value="QuotedPrintable" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Net.Mime.TransferEncoding QuotedPrintable = int32(0)" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Net.Mime.TransferEncoding</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encodes data that consists of printable characters in the US-ASCII character set. See RFC 2406 Section 6.7.</para>
</summary>
</Docs>
</Member>
<Member MemberName="SevenBit">
<MemberSignature Language="C#" Value="SevenBit" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Net.Mime.TransferEncoding SevenBit = int32(2)" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Net.Mime.TransferEncoding</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Used for data that is not encoded. The data is in 7-bit US-ASCII characters with a total line length of no longer than 1000 characters. See RFC2406 Section 2.7.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Unknown">
<MemberSignature Language="C#" Value="Unknown" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Net.Mime.TransferEncoding Unknown = int32(-1)" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Net.Mime.TransferEncoding</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Indicates that the transfer encoding is unknown.</para>
</summary>
</Docs>
</Member>
</Members>
</Type>