BadScript 2
Loading...
Searching...
No Matches
AssemblyLicenseAttribute.cs
Go to the documentation of this file.
1// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
3using System;
4using System.Runtime.InteropServices;
5
7{
11 [AttributeUsage(AttributeTargets.Assembly)]
12 [ComVisible(false)]
14 {
20 public AssemblyLicenseAttribute(string line1)
21 : base(line1) { }
22
29 public AssemblyLicenseAttribute(string line1, string line2)
30 : base(line1, line2) { }
31
39 public AssemblyLicenseAttribute(string line1, string line2, string line3)
40 : base(line1, line2, line3) { }
41
50 public AssemblyLicenseAttribute(string line1, string line2, string line3, string line4)
51 : base(line1, line2, line3, line4) { }
52
62 public AssemblyLicenseAttribute(string line1, string line2, string line3, string line4, string line5)
63 : base(line1, line2, line3, line4, line5) { }
64 }
65}
Models a multiline assembly license text.
AssemblyLicenseAttribute(string line1)
Initializes a new instance of the CommandLine.Text.AssemblyLicenseAttribute class with one line of te...
AssemblyLicenseAttribute(string line1, string line2, string line3, string line4)
Initializes a new instance of the CommandLine.Text.AssemblyLicenseAttribute class with four lines of ...
AssemblyLicenseAttribute(string line1, string line2, string line3, string line4, string line5)
Initializes a new instance of the CommandLine.Text.AssemblyLicenseAttribute class with five lines of ...
AssemblyLicenseAttribute(string line1, string line2, string line3)
Initializes a new instance of the CommandLine.Text.AssemblyLicenseAttribute class with three lines of...
AssemblyLicenseAttribute(string line1, string line2)
Initializes a new instance of the CommandLine.Text.AssemblyLicenseAttribute class with two lines of t...
Provides base properties for creating an attribute, used to define multiple lines of text.