mscorlib(4.0.0.0) API with additions
SatelliteContractVersionAttribute.cs
2 
3 namespace System.Resources
4 {
6  [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)]
7  [ComVisible(true)]
8  [__DynamicallyInvokable]
10  {
11  private string _version;
12 
15  [__DynamicallyInvokable]
16  public string Version
17  {
18  [__DynamicallyInvokable]
19  get
20  {
21  return _version;
22  }
23  }
24 
28  [__DynamicallyInvokable]
29  public SatelliteContractVersionAttribute(string version)
30  {
31  if (version == null)
32  {
33  throw new ArgumentNullException("version");
34  }
35  _version = version;
36  }
37  }
38 }
The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method th...
SatelliteContractVersionAttribute(string version)
Initializes a new instance of the T:System.Resources.SatelliteContractVersionAttribute class.
Represents the base class for custom attributes.
Definition: Attribute.cs:15
Definition: __Canon.cs:3
Instructs a T:System.Resources.ResourceManager object to ask for a particular version of a satellite ...
Represents the version number of an assembly, operating system, or the common language runtime....
Definition: Version.cs:11
AttributeTargets
Specifies the application elements on which it is valid to apply an attribute.