Geowigo.Models.CartridgeTag.GetCachePathCore C# (CSharp) Méthode

GetCachePathCore() private méthode

private GetCachePathCore ( WF.Player.Core.Media media ) : string
media WF.Player.Core.Media
Résultat 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