Method | Description | |
---|---|---|
Accept ( MimeKit.MimeVisitor visitor ) : void |
Dispatches to the specific visit method for this MIME entity. This default implementation for MimeKit.MultipartRelated nodes calls MimeKit.MimeVisitor.VisitMultipartRelated. Override this method to call into a more specific method on a derived visitor class of the MimeKit.MimeVisitor class. However, it should still support unknown visitors by calling MimeKit.MimeVisitor.VisitMultipartRelated. |
|
Contains ( |
Checks if the MultipartRelated contains a part matching the specified URI. Determines whether or not the multipart/related entity contains a part matching the specified URI. |
|
IndexOf ( Uri uri ) : int |
Gets the index of the part matching the specified URI. Finds the index of the part matching the specified URI, if it exists. If the URI scheme is |
|
MultipartRelated ( ) : System |
Initializes a new instance of the MimeKit.MultipartRelated class. Creates a new MultipartRelated part. |
|
MultipartRelated ( MimeEntityConstructorArgs args ) : System |
Initializes a new instance of the MimeKit.MultipartRelated class. This constructor is used by MimeKit.MimeParser. |
|
Open ( Uri uri ) : Stream |
Opens a stream for reading the decoded content of the MIME part specified by the provided URI. Opens a stream for reading the decoded content of the MIME part specified by the provided URI. |
|
Open ( Uri uri, string &mimeType, string &charset ) : Stream |
Opens a stream for reading the decoded content of the MIME part specified by the provided URI. Opens a stream for reading the decoded content of the MIME part specified by the provided URI. |
Method | Description | |
---|---|---|
GetRootIndex ( ) : int |
public Accept ( MimeKit.MimeVisitor visitor ) : void | ||
visitor | MimeKit.MimeVisitor | The visitor. |
return | void |
public Contains ( |
||
uri | The URI of the MIME part. | |
return | bool |
public IndexOf ( Uri uri ) : int | ||
uri | Uri | The URI of the MIME part. |
return | int |
public MultipartRelated ( MimeEntityConstructorArgs args ) : System | ||
args | MimeEntityConstructorArgs | Information used by the constructor. |
return | System |
public Open ( Uri uri, string &mimeType, string &charset ) : Stream | ||
uri | Uri | The URI. |
mimeType | string | The mime-type of the content. |
charset | string | The charset of the content (if the content is text-based) |
return | Stream |