Documentation

Gets the desired file, and will download it if necessary. The method may need to be called twice.  

Arguments

The circle you wish to pull from, the respective topic, the FileMap ID, and the file path to save into.

Returns

The desired file, and whether or not it was successful in the “SavetoPath” attempt.

API Definition

public async Task<GetFileReply> GetFile(GetFileRequest request)

C# Structures

public class GetFileRequest {

  public string CircleId;

  public string TopicId;

  public string FmapId;

  public string SaveToPath;

}

public class GetFileReply 

{

  public ReturnStatus Status;

}

C# Example code:

public void GetFile(string circleId, string fileMapId, string saveToFileName)

{

   GetFileRequest request = new GetFileRequest()

     {CircleId = circleId, FmapID = fileMapId, SaveToPath = saveToFileName};

   GetFileReply reply = _circle.GetFile(request);

   Console.WriteLine(reply.Status.Message);

}