18 references to GetStream
PresentationFramework (14)
src\Framework\MS\Internal\IO\Packaging\PackageFilter.cs (2)
384
_currentStream = currentPart.
GetStream
();
421
_currentStream = currentPart.
GetStream
();
src\Framework\System\Windows\Application.cs (5)
520
stream = part.
GetStream
();
595
Stream stream = part.
GetStream
();
714
return (part == null) ? null : new StreamResourceInfo(part.
GetStream
(), part.ContentType);
752
return (part == null) ? null : new StreamResourceInfo(part.
GetStream
(), part.ContentType);
818
stream = sooPart.
GetStream
();
src\Framework\System\Windows\Documents\WpfPayload.cs (7)
225
Stream xamlPartStream = xamlEntryPart.
GetStream
();
269
Stream xamlPartStream = xamlEntryPart.
GetStream
();
352
xamlObject = XamlReader.Load(xamlEntryPart.
GetStream
(), parserContext, useRestrictiveXamlReader);
501
Stream imageStream = imagePart.
GetStream
();
714
return part.
GetStream
();
736
return imagePart.
GetStream
();
745
return imagePart.
GetStream
();
WindowsBase (4)
Base\MS\Internal\IO\Packaging\Certificate.cs (1)
105
using (Stream s = _part.
GetStream
())
Base\MS\Internal\IO\Packaging\InternalRelationshipCollection.cs (1)
515
using (IgnoreFlushAndCloseStream s = new IgnoreFlushAndCloseStream(part.
GetStream
()))
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (2)
660
using (Stream s = SignaturePart.
GetStream
())
784
Debug.Assert(SignaturePart.
GetStream
().Length == 0, "Logic Error: Can't sign when signature already exists");