mscorlib(4.0.0.0) API with additions
Ipv6Element.cs
2 
4 {
6  public sealed class Ipv6Element : ConfigurationElement
7  {
8  private ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
9 
10  private readonly ConfigurationProperty enabled = new ConfigurationProperty("enabled", typeof(bool), false, ConfigurationPropertyOptions.None);
11 
12  protected internal override ConfigurationPropertyCollection Properties
13  {
14  protected get
15  {
16  return properties;
17  }
18  }
19 
23  [ConfigurationProperty("enabled", DefaultValue = false)]
24  public bool Enabled
25  {
26  get
27  {
28  return (bool)base[enabled];
29  }
30  set
31  {
32  base[enabled] = value;
33  }
34  }
35 
37  public Ipv6Element()
38  {
39  properties.Add(enabled);
40  }
41  }
42 }
Determines whether Internet Protocol version 6 is enabled on the local computer. This class cannot be...
Definition: Ipv6Element.cs:6
Definition: __Canon.cs:3
bool Enabled
Gets or sets a Boolean value that indicates whether Internet Protocol version 6 is enabled on the loc...
Definition: Ipv6Element.cs:25
Ipv6Element()
Initializes a new instance of the T:System.Net.Configuration.Ipv6Element class.
Definition: Ipv6Element.cs:37