Compartilhar via


RefreshSharingFolderType Classe

Definição

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

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 compartilhada. Neste exemplo, IdOfLocalFolder é o FolderIdType objeto que identifica a pasta local que deve ser atualizada.

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 da RefreshSharingFolderType classe.

Propriedades

SharingFolderId

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

Aplica-se a