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

SetCachedContent() private method

private SetCachedContent ( long pageId, int versionId, string content ) : void
pageId long
versionId int
content string
return void
		private void SetCachedContent(long pageId, int versionId, string content)
		{
			var file = GetCacheFile(pageId, versionId);
			Path.GetDirectoryName(file).CreateDirectoryIfNotExists();

			File.WriteAllText(file, content);
		}