Geowigo.Models.CartridgeTag.GetCachePathCore C# (CSharp) Method

GetCachePathCore() private method

private GetCachePathCore ( WF.Player.Core.Media media ) : string
media WF.Player.Core.Media
return string
		private string GetCachePathCore(Media media)
		{
			// FDL files are converted to WAV files.
			string extension = media.Type == MediaType.FDL ? "WAV" : media.Type.ToString().ToUpper();

			return GetCachePathCore(String.Format("{0}.{1}", media.MediaId, extension));
		}

Same methods

CartridgeTag::GetCachePathCore ( string filename ) : string