AttachmentCollection.AddFileAttachment Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
AddFileAttachment(String) |
Ajoute une pièce jointe à la collection. |
AddFileAttachment(String, Byte[]) |
Ajoute une pièce jointe à la collection qui contient le fichier. |
AddFileAttachment(String, Stream) |
Ajoute une pièce jointe à la collection à l’aide d’un flux de données qui contient le fichier. |
AddFileAttachment(String, String) |
Ajoute une pièce jointe à la collection. |
AddFileAttachment(String)
Ajoute une pièce jointe à la collection.
public:
Microsoft::Exchange::WebServices::Data::FileAttachment ^ AddFileAttachment(System::String ^ fileName);
public Microsoft.Exchange.WebServices.Data.FileAttachment AddFileAttachment (string fileName);
Public Function AddFileAttachment (fileName As String) As FileAttachment
Paramètres
- fileName
- String
Chemin d’accès à un fichier à ajouter à la collection.
Retours
Un fichier en pièce jointe.
S’applique à
AddFileAttachment(String, Byte[])
Ajoute une pièce jointe à la collection qui contient le fichier.
public:
Microsoft::Exchange::WebServices::Data::FileAttachment ^ AddFileAttachment(System::String ^ name, cli::array <System::Byte> ^ content);
public Microsoft.Exchange.WebServices.Data.FileAttachment AddFileAttachment (string name, byte[] content);
Public Function AddFileAttachment (name As String, content As Byte()) As FileAttachment
Paramètres
- name
- String
Nom complet de la pièce jointe.
- content
- Byte[]
Tableau d’octets qui représente le contenu de la pièce jointe.
Retours
Un fichier en pièce jointe.
S’applique à
AddFileAttachment(String, Stream)
Ajoute une pièce jointe à la collection à l’aide d’un flux de données qui contient le fichier.
public:
Microsoft::Exchange::WebServices::Data::FileAttachment ^ AddFileAttachment(System::String ^ name, System::IO::Stream ^ contentStream);
public Microsoft.Exchange.WebServices.Data.FileAttachment AddFileAttachment (string name, System.IO.Stream contentStream);
Public Function AddFileAttachment (name As String, contentStream As Stream) As FileAttachment
Paramètres
- name
- String
Nom complet de la pièce jointe.
- contentStream
- Stream
Flux de données qui contient le fichier à joindre à la collection.
Retours
Un fichier en pièce jointe.
S’applique à
AddFileAttachment(String, String)
Ajoute une pièce jointe à la collection.
public:
Microsoft::Exchange::WebServices::Data::FileAttachment ^ AddFileAttachment(System::String ^ name, System::String ^ fileName);
public Microsoft.Exchange.WebServices.Data.FileAttachment AddFileAttachment (string name, string fileName);
Public Function AddFileAttachment (name As String, fileName As String) As FileAttachment
Paramètres
- name
- String
Nom complet de la pièce jointe.
- fileName
- String
Nom de fichier de la pièce jointe.
Retours
Un fichier en pièce jointe.