Base:
method
SetLength
System.IO.Stream.SetLength(System.Int64)
2 overrides of SetLength
mscorlib (1)
system\io\unmanagedmemorystreamwrapper.cs (1)
143public override void SetLength(Int64 value) {
WindowsBase (1)
Base\MS\Internal\IO\Packaging\TrackingMemoryStream.cs (1)
64public override void SetLength(long value)
12 references to SetLength
mscorlib (1)
system\io\unmanagedmemorystreamwrapper.cs (1)
148base.SetLength(value);
System.Data.Services.Client (2)
System\Data\Services\Client\QueryResult.cs (2)
253((MemoryStream)copy).SetLength(copy.Position); 695((MemoryStream)outputResponse).SetLength(outputResponse.Position);
System.IO.Log (1)
System\IO\Log\FileLogRecordStream.cs (1)
229this.stream.SetLength(value);
System.Web (5)
Configuration\RemoteWebConfigurationHostStream.cs (3)
148_MemoryStream.SetLength(offset + count); 273_MemoryStream.SetLength(val); 281_MemoryStream.SetLength(offset + count);
State\SessionStateUtil.cs (1)
195s.SetLength(0);
UI\ObjectStateFormatter.cs (1)
772ms.SetLength(ms.Position);
WindowsBase (3)
Base\MS\Internal\IO\Packaging\SparseMemoryStream.cs (2)
124memStreamBlock.Stream.SetLength(temp); 559prevMemStreamBlock.Stream.SetLength(_currentStreamPosition - prevMemStreamBlock.Offset);
Base\MS\Internal\IO\Packaging\TrackingMemoryStream.cs (1)
66base.SetLength(value);