次の方法で共有


RefreshSharingFolderType クラス

定義

クラスは RefreshSharingFolderType 、指定したローカル フォルダー内の共有データを更新する要求を表します。

public ref class RefreshSharingFolderType : ExchangeWebServices::BaseRequestType
public class RefreshSharingFolderType : ExchangeWebServices.BaseRequestType
Public Class RefreshSharingFolderType
Inherits BaseRequestType
継承
RefreshSharingFolderType

次のコード例では、共有されているフォルダーの最新データを使用して、指定したローカル フォルダーを更新する方法を示します。 この例では、IdOfLocalFolder は FolderIdType 、更新するローカル フォルダーを識別するオブジェクトです。

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

コンストラクター

RefreshSharingFolderType()

コンストラクターは RefreshSharingFolderType 、 クラスの新しいインスタンスを RefreshSharingFolderType 初期化します。

プロパティ

SharingFolderId

プロパティは SharingFolderId 、共有関係の FolderIdType ローカル フォルダーを識別するオブジェクトを取得または設定します。

適用対象