Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion xml/System.Reflection.Emit/AssemblyBuilder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2683,7 +2683,11 @@ The following code example shows how to define and use a dynamic assembly. The e
</ReturnValue>
<Docs>
<summary>Gets the host context where the dynamic assembly is being created.</summary>
<value>A value that indicates the host context where the dynamic assembly is being created.</value>
<value>
.NET Framework only: A value that indicates the host context where the dynamic assembly is being created.

.NET Core and .NET 5+: 0 in all cases.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
9 changes: 5 additions & 4 deletions xml/System.Reflection/Assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3901,7 +3901,10 @@ This property is marked obsolete starting in .NET 5, and generates a compile-tim
<Docs>
<summary>Gets a value that indicates whether the current assembly is loaded with full trust.</summary>
<value>
<see langword="true" /> if the current assembly is loaded with full trust; otherwise, <see langword="false" />.</value>
.NET Framework only: <see langword="true" /> if the current assembly is loaded with full trust; otherwise, <see langword="false" />.

.NET Core and .NET 5+: <see langword="true" /> in all cases.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -6328,9 +6331,7 @@ In .NET 5 and later versions, for bundled assemblies, the value returned is an e
<format type="text/markdown"><![CDATA[

## Remarks
By default, assemblies that you compile with the .NET Framework 4 have [level 2](/dotnet/framework/misc/security-transparent-code-level-2) transparency, although you can explicitly make them [level 1](/dotnet/framework/misc/security-transparent-code-level-1) instead. Assemblies that were compiled with earlier versions of the .NET Framework have level 1 transparency.

See [Security Changes](/dotnet/framework/security/security-changes).
**.NET Framework only:** By default, assemblies that you compile with the .NET Framework 4 have [level 2](/dotnet/framework/misc/security-transparent-code-level-2) transparency, although you can explicitly make them [level 1](/dotnet/framework/misc/security-transparent-code-level-1) instead. Assemblies that were compiled with earlier versions of the .NET Framework have level 1 transparency. See [Security Changes](/dotnet/framework/security/security-changes).

]]></format>
</remarks>
Expand Down