mscorlib(4.0.0.0) API with additions
AssemblyTargetedPatchBandAttribute.cs
1 namespace System.Runtime
2 {
4  [AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
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 }
Represents the base class for custom attributes.
Definition: Attribute.cs:15
AssemblyTargetedPatchBandAttribute(string targetedPatchBand)
Initializes a new instance of the T:System.Runtime.AssemblyTargetedPatchBandAttribute class.
AttributeTargets
Specifies the application elements on which it is valid to apply an attribute.
Specifies patch band information for targeted patching of the .NET Framework.