Compartilhar via


ExchangeService.GetAttachments Método

Definição

Sobrecargas

GetAttachments(Attachment[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>)

Obtém propriedades de anexos do servidor.

GetAttachments(String[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>)

Obtém propriedades de anexos do servidor.

GetAttachments(Attachment[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>)

Obtém propriedades de anexos do 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[]

Uma matriz de Attachment objetos.

bodyType
Nullable<BodyType>

Especifica como o texto do corpo é formatado na resposta.

additionalProperties
IEnumerable<PropertyDefinitionBase>

Especifica propriedades adicionais no anexo a serem retornadas na resposta.

Retornos

Uma coleção de respostas para cada anexo.

Aplica-se a

GetAttachments(String[], Nullable<BodyType>, IEnumerable<PropertyDefinitionBase>)

Obtém propriedades de anexos do 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[]

Uma matriz de IDs de anexo que identifica os anexos a serem obtidos do servidor.

bodyType
Nullable<BodyType>

Especifica como o texto do corpo é formatado na resposta.

additionalProperties
IEnumerable<PropertyDefinitionBase>

Especifica propriedades adicionais no anexo a serem retornadas na resposta.

Retornos

Uma coleção de respostas para cada anexo.

Comentários

Esse método recupera um ou mais anexos com base nas IDs de anexo especificadas no attachmentIds parâmetro. Isso permite o acesso a anexos quando apenas a ID de anexo está disponível, como quando um aplicativo de email envia IDs de anexo para um serviço remoto

Aplica-se a