RefreshSharingFolderType Classe

Definição

O RefreshSharingFolderType classe representa uma solicitação para atualizar dados compartilhados na pasta local especificado.

public ref class RefreshSharingFolderType : ExchangeWebServices::BaseRequestType
public class RefreshSharingFolderType : ExchangeWebServices.BaseRequestType
Public Class RefreshSharingFolderType
Inherits BaseRequestType
Herança
RefreshSharingFolderType

Exemplos

O exemplo de código a seguir mostra como atualizar a pasta local especificada com os dados mais recentes da pasta que está sendo compartilhado. Neste exemplo, IdOfLocalFolder é o FolderIdType objeto que identifica a pasta local que deve ser atualizado.

static void RefreshSharingFolderTest(ExchangeServiceBinding esb)
{
    // Create the sharing request.
    RefreshSharingFolderType rsfRequest = new RefreshSharingFolderType();

    // Specify the identifier for the local folder that is to be refreshed.
    rsfRequest.SharingFolderId = <span class="label">IdOfLocalFolder</span>; 

    try
    {
      // Send the request and get the response.
      RefreshSharingFolderResponseMessageType rsfResponse = esb.RefreshSharingFolder(rsfRequest);
    }
    catch (Exception e) 
    {
      Console.WriteLine(e.Message); 
    }
}

Construtores

RefreshSharingFolderType()

O RefreshSharingFolderType construtor inicializa uma nova instância do RefreshSharingFolderType classe.

Propriedades

SharingFolderId

O SharingFolderId propriedade obtém ou define um FolderIdType objeto que identifica a pasta local em uma relação de compartilhamento.

Aplica-se a