Compartir a través de


RefreshSharingFolderType Clase

Definición

La RefreshSharingFolderType clase representa una solicitud para actualizar los datos compartidos en la carpeta local especificada.

public ref class RefreshSharingFolderType : ExchangeWebServices::BaseRequestType
public class RefreshSharingFolderType : ExchangeWebServices.BaseRequestType
Public Class RefreshSharingFolderType
Inherits BaseRequestType
Herencia
RefreshSharingFolderType

Ejemplos

En el ejemplo de código siguiente se muestra cómo actualizar la carpeta local especificada con los datos más recientes de la carpeta que se comparte. En este ejemplo, IdOfLocalFolder es el FolderIdType objeto que identifica la carpeta local que se va a actualizar.

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); 
    }
}

Constructores

RefreshSharingFolderType()

El RefreshSharingFolderType constructor inicializa una nueva instancia de la RefreshSharingFolderType clase .

Propiedades

SharingFolderId

La SharingFolderId propiedad obtiene o establece un FolderIdType objeto que identifica la carpeta local en una relación de uso compartido.

Se aplica a