Microsoft.TeamFoundation.VersionControl.Client.DiffItemVersionedFile.GetFile C# (CSharp) Method

GetFile() public method

public GetFile ( ) : string
return string
        public string GetFile()
        {
            throw new NotImplementedException();
            // this is a quite inefficient implementation, FIXME 
//            string tname = Path.GetTempFileName();
//            item.DownloadFile(tname);
//
//            string file;
//            using (StreamReader sr = new StreamReader(tname))
//            {
//                file = sr.ReadToEnd();
//            }
//			
//            File.Delete(tname);
//            return file;
        }