CCNet.Build.Confluence.CachedConfluenceClient.GetCacheFile C# (CSharp) Method

GetCacheFile() private method

private GetCacheFile ( long pageId, int versionId ) : string
pageId long
versionId int
return string
		private string GetCacheFile(long pageId, int versionId)
		{
			var fileName = String.Format("{0}_{1}.xml", pageId, versionId);
			return Path.Combine(m_cachePath, pageId.ToString(), fileName);
		}
	}