Compartir a través de


GetSharingMetadataType Clase

Definición

La GetSharingMetadataType clase representa una solicitud para obtener un token de autenticación opaco que identifica la invitación para compartir.

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

Ejemplos

En el ejemplo de código siguiente se muestra cómo obtener un token de autenticación opaco que identifica una invitación para compartir. En este ejemplo, user1@contoso.com quiere compartir su carpeta de contactos con user1@fabikam.com y user2@test.com. IdOfContactsFolder representa el FolderIdType objeto que corresponde a la carpeta de contactos de user1@contoso.com.

static void GetSharingMetadataTest(ExchangeServiceBinding esb)
{
    // Create the sharing request.
    GetSharingMetadataType gsmRequest = new GetSharingMetadataType();

    // Specify the identifier of the folder to be shared.
    gsmRequest.IdOfFolderToShare = <span class="label">IdOfContactsFolder</span>;

    // Specify the sender of the request and the intended recipients.
    gsmRequest.SenderSmtpAddress = "user1@contoso.com";
    gsmRequest.Recipients = new string[] { "user1@fabrikam.com", "user2@test.com" };

    try
    {
      // Submit the request and get the response.
      GetSharingMetadataResponseMessageType gsmResponse = esb.GetSharingMetadata(gsmRequest);
    }
    catch (Exception e)
    {
      Console.WriteLine(e.Message);
    }
}

Constructores

GetSharingMetadataType()

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

Propiedades

IdOfFolderToShare

La IdOfFolderToShare propiedad obtiene o establece un FolderIdType objeto que identifica la carpeta que se va a compartir.

Recipients

La Recipients propiedad obtiene o establece una cadena que contiene las direcciones de correo electrónico SMTP de una o varias entidades que se invitarán a compartir datos en la carpeta especificada por la IdOfFolderToShare propiedad .

SenderSmtpAddress

La SenderSmtpAddress propiedad obtiene o establece la dirección de correo electrónico SMTP que corresponde al buzón de correo que contiene la carpeta identificada por la IdOfFolderToShare propiedad .

Se aplica a