ExchangeService.GetAttachments Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
GetAttachments(Attachment[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>) |
Obtiene las propiedades de datos adjuntos del servidor. |
GetAttachments(String[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>) |
Obtiene las propiedades de datos adjuntos del servidor. |
GetAttachments(Attachment[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>)
Obtiene las propiedades de datos adjuntos del servidor.
public:
Microsoft::Exchange::WebServices::Data::ServiceResponseCollection<Microsoft::Exchange::WebServices::Data::GetAttachmentResponse ^> ^ GetAttachments(cli::array <Microsoft::Exchange::WebServices::Data::Attachment ^> ^ attachments, Nullable<Microsoft::Exchange::WebServices::Data::BodyType> bodyType, System::Collections::Generic::IEnumerable<Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^> ^ additionalProperties);
public Microsoft.Exchange.WebServices.Data.ServiceResponseCollection<Microsoft.Exchange.WebServices.Data.GetAttachmentResponse> GetAttachments (Microsoft.Exchange.WebServices.Data.Attachment[] attachments, Nullable<Microsoft.Exchange.WebServices.Data.BodyType> bodyType, System.Collections.Generic.IEnumerable<Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase> additionalProperties);
Public Function GetAttachments (attachments As Attachment(), bodyType As Nullable(Of BodyType), additionalProperties As IEnumerable(Of PropertyDefinitionBase)) As ServiceResponseCollection(Of GetAttachmentResponse)
Parámetros
- attachments
- Attachment[]
Matriz de Attachment objetos.
- additionalProperties
- IEnumerable<PropertyDefinitionBase>
Especifica propiedades adicionales en los datos adjuntos que se devolverán en la respuesta.
Devoluciones
Colección de respuestas para cada dato adjunto.
Se aplica a
GetAttachments(String[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>)
Obtiene las propiedades de datos adjuntos del servidor.
public:
Microsoft::Exchange::WebServices::Data::ServiceResponseCollection<Microsoft::Exchange::WebServices::Data::GetAttachmentResponse ^> ^ GetAttachments(cli::array <System::String ^> ^ attachmentIds, Nullable<Microsoft::Exchange::WebServices::Data::BodyType> bodyType, System::Collections::Generic::IEnumerable<Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^> ^ additionalProperties);
public Microsoft.Exchange.WebServices.Data.ServiceResponseCollection<Microsoft.Exchange.WebServices.Data.GetAttachmentResponse> GetAttachments (string[] attachmentIds, Nullable<Microsoft.Exchange.WebServices.Data.BodyType> bodyType, System.Collections.Generic.IEnumerable<Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase> additionalProperties);
Public Function GetAttachments (attachmentIds As String(), bodyType As Nullable(Of BodyType), additionalProperties As IEnumerable(Of PropertyDefinitionBase)) As ServiceResponseCollection(Of GetAttachmentResponse)
Parámetros
- attachmentIds
- String[]
Matriz de identificadores de datos adjuntos que identifican los datos adjuntos que se van a obtener del servidor.
- additionalProperties
- IEnumerable<PropertyDefinitionBase>
Especifica propiedades adicionales en los datos adjuntos que se devolverán en la respuesta.
Devoluciones
Colección de respuestas para cada dato adjunto.
Comentarios
Este método recupera uno o varios datos adjuntos en función de los identificadores de datos adjuntos especificados en el attachmentIds
parámetro . Esto permite el acceso a los datos adjuntos cuando solo está disponible el identificador de datos adjuntos, como cuando una aplicación de correo envía identificadores de datos adjuntos a un servicio remoto.