GetFileContent() 공개 메소드

public GetFileContent ( string filePath ) : string
filePath string
리턴 string
예제 #1
0
		protected void Page_Load(object sender, EventArgs e)
		{
			var fileContentService = new FileContentService(
				ConfigurationManager.AppSettings["webmarkupmin:Samples:TextContentDirectoryPath"]);
			Body = fileContentService.GetFileContent("change-log.html");
		}