mscorlib(4.0.0.0) API with additions
AssemblyTargetedPatchBandAttribute.cs
1
namespace
System.Runtime
2
{
4
[AttributeUsage(
AttributeTargets
.Assembly, Inherited =
false
)]
5
public
sealed
class
AssemblyTargetedPatchBandAttribute
:
Attribute
6
{
7
private
string
m_targetedPatchBand;
8
11
public
string
TargetedPatchBand
=> m_targetedPatchBand;
12
15
public
AssemblyTargetedPatchBandAttribute
(
string
targetedPatchBand)
16
{
17
m_targetedPatchBand = targetedPatchBand;
18
}
19
}
20
}
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System.Attribute
Represents the base class for custom attributes.
Definition:
Attribute.cs:15
System.Runtime.AssemblyTargetedPatchBandAttribute.TargetedPatchBand
string TargetedPatchBand
Gets the patch band.
Definition:
AssemblyTargetedPatchBandAttribute.cs:11
System.Runtime.AssemblyTargetedPatchBandAttribute.AssemblyTargetedPatchBandAttribute
AssemblyTargetedPatchBandAttribute(string targetedPatchBand)
Initializes a new instance of the T:System.Runtime.AssemblyTargetedPatchBandAttribute class.
Definition:
AssemblyTargetedPatchBandAttribute.cs:15
System.AttributeTargets
AttributeTargets
Specifies the application elements on which it is valid to apply an attribute.
Definition:
AttributeTargets.cs:10
System.Runtime.AssemblyTargetedPatchBandAttribute
Specifies patch band information for targeted patching of the .NET Framework.
Definition:
AssemblyTargetedPatchBandAttribute.cs:5
All cs
System.Runtime
AssemblyTargetedPatchBandAttribute.cs
Generated by
1.8.15