System.IO.FileStream.Unlock 方法
方法描述
允许其他进程访问以前锁定的某个文件的全部或部分。
语法定义(C# System.IO.FileStream.Unlock 方法 的用法)
public virtual void Unlock( long position, long length )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
position | System-Int64 | 要取消锁定的范围的开始处。 |
length | System-Int64 | 要取消锁定的范围。 |
返回值 | void |
提示和注释
有关通用 I/O 任务的列表,请参见通用 I/O 任务。
System.IO.FileStream.Unlock 方法例子
此代码示例是为 Lock 方法提供的一个更大示例的一部分。
// Unlock the specified part of the file. case 'U': try { fileStream.Unlock( textLength - 1, byteCount); Console.WriteLine("The specified part " + "of file has been unlocked."); } catch(IOException e) { Console.WriteLine( "{0}: The specified part of file is " + "not locked by the current process.", e.GetType().Name); } break;
异常
异常 | 异常描述 |
---|---|
ArgumentOutOfRangeException | position 或 length 为负。 |
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。