Example #1
0
 byte[] GetFile( string fileName )
 {
     FileService.FileServiceProxy proxy = new FileService.FileServiceProxy();
     byte[] result = proxy.GetFile( fileName );
     proxy.Close();
     return result;
 }
Example #2
0
 byte[] GetFile( string fileName )
 {
     FileService.FileServiceProxy proxy = new FileService.FileServiceProxy();
     proxy.ClientCredentials.Windows.AllowNtlm = true;
     byte[] result = proxy.GetFile( fileName );
     proxy.Close();
     return result;
 }