Exemplo n.º 1
0
    /// <summary> retrieves a list of replays to display </summary>
    public void RetrieveReplays()
    {
        Reset();
        m_CurrentContainer = GetContainerToUse();
        string rawData = blobHelper.ListBlobs(m_CurrentContainer);
        string temp    = "";

        for (int i = 0; i < rawData.Length; i++)
        {
            if (rawData[i] == '@')
            {
                Replays.Add(temp);
                temp = "";
            }
            else
            {
                temp = temp + rawData[i];
            }
        }
    }
Exemplo n.º 2
0
 // Gets a list of blobs in the container
 public List <string> ListBlobsInContainer(string name)
 {
     return(BlobHelper.ListBlobs(name));
 }