Static Image Export in F#

Plotly allows you to save static images of your plots. Save the image to your local computer, or embed it inside your Jupyter notebooks as a static image.


In [1]:
#r "nuget: Plotly.NET,  2.0.0-preview.8"
#r "nuget: Plotly.NET.Interactive,  2.0.0-preview.8"
open Plotly.NET
Installed Packages
  • Plotly.NET, 2.0.0-preview.8
  • Plotly.NET.Interactive, 2.0.0-preview.8

Loading extensions from Plotly.NET.Interactive.dll

Added Kernel Extension including formatters for Plotly.NET charts.

Create a Figure

In [2]:
open Plotly.NET.TraceObjects
let N = 100
let rnd = System.Random()
let x = Array.init N (fun _ -> rnd.NextDouble())
let y = Array.init N (fun _ -> rnd.NextDouble())

let marker = Marker.init(Size= 30,Colorscale=StyleParam.Colorscale.Viridis);
marker?color <- x
let scatter =
  Chart.Scatter(x,y,StyleParam.Mode.Markers,Opacity=0.6)
  |> Chart.withMarker(marker)
  // |> Chart.withSize(800.,500.)
In [3]:
scatter
Out[3]:

Write Image File

In [4]:
open System.IO

let srcPath="static/images/"

if not <| Directory.Exists(srcPath) then
        Directory.CreateDirectory(srcPath) |> ignore

Raster Formats: PNG, JPEG, SVG and PDF

In [5]:
let fileName = "fig1.png";
let imagePath = srcPath + fileName;
let path = Path.Combine(imagePath);
File.Create(path);
Out[5]:
HandleCanReadCanWriteSafeFileHandleNameIsAsyncLengthPositionCanSeekCanTimeoutReadTimeoutWriteTimeout
530
True
True
{ Microsoft.Win32.SafeHandles.SafeFileHandle: IsInvalid: False, IsClosed: False }
/home/circleci/project/build/fsharp/ipynb/static/images/fig1.png
False
0
0
True
False
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
In [6]:
let fileName = "fig1.jpeg";
let imagePath = srcPath + fileName;
let path = Path.Combine(imagePath);
File.Create(path);
Out[6]:
HandleCanReadCanWriteSafeFileHandleNameIsAsyncLengthPositionCanSeekCanTimeoutReadTimeoutWriteTimeout
532
True
True
{ Microsoft.Win32.SafeHandles.SafeFileHandle: IsInvalid: False, IsClosed: False }
/home/circleci/project/build/fsharp/ipynb/static/images/fig1.jpeg
False
0
0
True
False
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
In [7]:
let fileName = "fig1.svg";
let imagePath = srcPath + fileName;
let path = Path.Combine(imagePath);
File.Create(path);
Out[7]:
HandleCanReadCanWriteSafeFileHandleNameIsAsyncLengthPositionCanSeekCanTimeoutReadTimeoutWriteTimeout
534
True
True
{ Microsoft.Win32.SafeHandles.SafeFileHandle: IsInvalid: False, IsClosed: False }
/home/circleci/project/build/fsharp/ipynb/static/images/fig1.svg
False
0
0
True
False
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
In [8]:
let fileName = "fig1.pdf";
let imagePath = srcPath + fileName;
let path = Path.Combine(imagePath);
File.Create(path);
Out[8]:
HandleCanReadCanWriteSafeFileHandleNameIsAsyncLengthPositionCanSeekCanTimeoutReadTimeoutWriteTimeout
535
True
True
{ Microsoft.Win32.SafeHandles.SafeFileHandle: IsInvalid: False, IsClosed: False }
/home/circleci/project/build/fsharp/ipynb/static/images/fig1.pdf
False
0
0
True
False
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485160 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_ReadTimeout(): Name: get_ReadTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684459, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_ReadTimeout() at lambda_method466(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }
{ System.InvalidOperationException: Timeouts are not supported on this stream. at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57: TargetSite: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ { [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")]: AttributeType: System.Reflection.AssemblyProductAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft® .NET" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]: AttributeType: System.Runtime.CompilerServices.CompilationRelaxationsAttribute, Constructor: Void .ctor(Int32), ConstructorArguments: [ (Int32)8 ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]: AttributeType: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ WrapNonExceptionThrows = True ] }, { [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]: AttributeType: System.Diagnostics.DebuggableAttribute, Constructor: Void .ctor(DebuggingModes), ConstructorArguments: [ (System.Diagnostics.DebuggableAttribute+DebuggingModes)2 ], NamedArguments: [ ] }, { [System.CLSCompliantAttribute((Boolean)True)]: AttributeType: System.CLSCompliantAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)True ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]: AttributeType: System.Runtime.InteropServices.ComVisibleAttribute, Constructor: Void .ctor(Boolean), ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)]: AttributeType: System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute, Constructor: Void .ctor(System.Runtime.InteropServices.DllImportSearchPath), ConstructorArguments: [ (System.Runtime.InteropServices.DllImportSearchPath)2050 ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "Serviceable", "True" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ ".NETFrameworkAssembly", "" ], NamedArguments: [ ] }, { [System.Resources.NeutralResourcesLanguageAttribute("en-US")]: AttributeType: System.Resources.NeutralResourcesLanguageAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "en-US" ], NamedArguments: [ ] }, { [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]: AttributeType: System.Runtime.Versioning.TargetFrameworkAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ ".NETCoreApp,Version=v5.0" ], NamedArguments: [ FrameworkDisplayName = "" ] }, { [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]: AttributeType: System.Reflection.AssemblyCompanyAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Microsoft Corporation" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyConfigurationAttribute("Release")]: AttributeType: System.Reflection.AssemblyConfigurationAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "Release" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")]: AttributeType: System.Reflection.AssemblyCopyrightAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "© Microsoft Corporation. All rights reserved." ], NamedArguments: [ ] }, { [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyDescriptionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")]: AttributeType: System.Reflection.AssemblyFileVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.1121.47308" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")]: AttributeType: System.Reflection.AssemblyInformationalVersionAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc" ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.ExtensionAttribute()]: AttributeType: System.Runtime.CompilerServices.ExtensionAttribute, Constructor: Void .ctor(), ConstructorArguments: [ ], NamedArguments: [ ] }, { [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")]: AttributeType: System.Reflection.AssemblyTitleAttribute, Constructor: Void .ctor(System.String), ConstructorArguments: [ "System.Private.CoreLib" ], NamedArguments: [ ] }, { [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")]: AttributeType: System.Reflection.AssemblyMetadataAttribute, Constructor: Void .ctor(System.String, System.String), ConstructorArguments: [ "RepositoryUrl", "git://github.com/dotnet/runtime" ], NamedArguments: [ ] } ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, ModuleHandle: System.ModuleHandle, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] } ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ { [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)]: AttributeType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, Constructor: { Void .ctor(Boolean): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, ReflectedType: System.Runtime.CompilerServices.NullablePublicOnlyAttribute, MetadataToken: 100663302, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ (Boolean)False ], NamedArguments: [ ] }, { [System.Runtime.CompilerServices.SkipLocalsInitAttribute()]: AttributeType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, Constructor: { Void .ctor(): Name: .ctor, MemberType: Constructor, DeclaringType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, ReflectedType: System.Runtime.CompilerServices.SkipLocalsInitAttribute, MetadataToken: 100681208, Module: System.Private.CoreLib.dll, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, HideBySig, SpecialName, RTSpecialName, CallingConvention: Standard, HasThis, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, IsAbstract: False, IsConstructor: True, IsFinal: False, IsHideBySig: True, IsSpecialName: True, IsStatic: False, .. }, ConstructorArguments: [ ], NamedArguments: [ ] } ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: { System.Private.CoreLib.dll: MDStreamVersion: 131072, FullyQualifiedName: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ModuleVersionId: 53ef14d9-e3b9-404f-ad8f-84cace173c67, MetadataToken: 1, ScopeName: System.Private.CoreLib.dll, Name: System.Private.CoreLib.dll, Assembly: { System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: CodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, FullName: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, EntryPoint: <null>, DefinedTypes: [ Microsoft.CodeAnalysis.EmbeddedAttribute, System.Runtime.CompilerServices.IsUnmanagedAttribute, System.Runtime.CompilerServices.NullableAttribute, System.Runtime.CompilerServices.NullableContextAttribute, System.Runtime.CompilerServices.NullablePublicOnlyAttribute, System.Runtime.CompilerServices.NativeIntegerAttribute, Interop, Interop+Kernel32, Interop+Ole32, Interop+OleAut32, Interop+Globalization, Interop+Globalization+ResultCode, Interop+Globalization+TimeZoneDisplayNameType, Interop+BOOL, Interop+Advapi32, Interop+Advapi32+ActivityControl, Interop+Advapi32+EVENT_FILTER_DESCRIPTOR, Interop+Advapi32+EtwEnableCallback, Interop+HostPolicy, Interop+HostPolicy+corehost_resolve_component_dependencies_result_fn ... (2044 more) ], IsCollectible: False, ManifestModule: System.Private.CoreLib.dll, ReflectionOnly: False, Location: /usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, ImageRuntimeVersion: v4.0.30319, GlobalAssemblyCache: False, HostContext: 0, IsDynamic: False, ExportedTypes: [ Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid, Microsoft.Win32.SafeHandles.SafeWaitHandle, Microsoft.Win32.SafeHandles.SafeFileHandle, System.ArgIterator, System.Array, System.Attribute, System.BadImageFormatException, System.Buffer, System.Decimal, System.Delegate, System.Enum, System.Environment, System.Environment+SpecialFolder, System.Environment+SpecialFolderOption, System.Exception, System.GCCollectionMode, System.GCNotificationStatus ... (1086 more) ], IsFullyTrusted: True, CustomAttributes: [ [System.Reflection.AssemblyProductAttribute("Microsoft® .NET")], [System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)], [System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)], [System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)], [System.CLSCompliantAttribute((Boolean)True)], [System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)], [System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)2050)], [System.Reflection.AssemblyMetadataAttribute("Serviceable", "True")], [System.Reflection.AssemblyMetadataAttribute(".NETFrameworkAssembly", "")], [System.Resources.NeutralResourcesLanguageAttribute("en-US")], [System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")], [System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")], [System.Reflection.AssemblyConfigurationAttribute("Release")], [System.Reflection.AssemblyCopyrightAttribute("© Microsoft Corporation. All rights reserved.")], [System.Reflection.AssemblyDescriptionAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyFileVersionAttribute("5.0.1121.47308")], [System.Reflection.AssemblyInformationalVersionAttribute("5.0.11+f431858f8b1f1510723ace6343786c9194dbd7fc")], [System.Runtime.CompilerServices.ExtensionAttribute()], [System.Reflection.AssemblyTitleAttribute("System.Private.CoreLib")], [System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "git://github.com/dotnet/runtime")] ], EscapedCodeBase: file:///usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11/System.Private.CoreLib.dll, Modules: [ System.Private.CoreLib.dll ], SecurityRuleSet: None }, ModuleHandle: { System.ModuleHandle: MDStreamVersion: 131072 }, CustomAttributes: [ [System.Runtime.CompilerServices.NullablePublicOnlyAttribute((Boolean)False)], [System.Runtime.CompilerServices.SkipLocalsInitAttribute()] ] }, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: { System.RuntimeMethodHandle: Value: 140304027485192 }, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, ReturnParameter: { Int32 : ParameterType: System.Int32, Name: <null>, HasDefaultValue: True, DefaultValue: <null>, RawDefaultValue: <null>, MetadataToken: 134217728, Attributes: None, Member: { Int32 get_WriteTimeout(): Name: get_WriteTimeout, DeclaringType: System.IO.Stream, ReflectedType: System.IO.Stream, MemberType: Method, MetadataToken: 100684461, Module: System.Private.CoreLib.dll, IsSecurityCritical: True, IsSecuritySafeCritical: False, IsSecurityTransparent: False, MethodHandle: System.RuntimeMethodHandle, Attributes: PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, SpecialName, CallingConvention: Standard, HasThis, ReturnType: System.Int32, ReturnTypeCustomAttributes: Int32 , ReturnParameter: Int32 , IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, Position: -1, IsIn: False, IsLcid: False, IsOptional: False, IsOut: False, IsRetval: False, CustomAttributes: [ ] }, IsCollectible: False, IsGenericMethod: False, IsGenericMethodDefinition: False, ContainsGenericParameters: False, MethodImplementationFlags: Managed, .. }, StackTrace: at System.IO.Stream.get_WriteTimeout() at lambda_method467(Closure , FileStream ) at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\workspace\_work\1\s\src\Microsoft.DotNet.Interactive.Formatting\MemberAccessor{T}.cs:line 57, Message: Timeouts are not supported on this stream., Data: [ ], InnerException: <null>, HelpLink: <null>, Source: System.Private.CoreLib, HResult: -2146233079 }

Change Image Dimensions and Scale

In addition to the image format, we can provide arguments to specify the image width and height in logical pixels. They also provide a scale parameter that can be used to increase (scale > 1) or decrease (scale < 1) the physical resolution of the resulting image.

In [9]:
let N = 100
let rnd = System.Random()
let x = Array.init N (fun _ -> rnd.NextDouble())
let y = Array.init N (fun _ -> rnd.NextDouble())

let marker = Marker.init(Size= 30,Colorscale=StyleParam.Colorscale.Viridis);
marker?color <- x
marker?scale <- 2

let scatter =
  Chart.Scatter(x,y,StyleParam.Mode.Markers)
  |>Chart.withMarker(marker)
  |> Chart.withSize(800.,500.)
  |>Chart.showAsImage(StyleParam.ImageFormat.PNG)
In [10]:
scatter