Class ConfigBase
Abstract class to provide basic features for all kinds of config concretions.
Inheritance
System.Object
ConfigBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: System.Dynamic.ExpandoObject
Assembly: Sin.Net.Domain.dll
Syntax
public abstract class ConfigBase
Constructors
ConfigBase(String)
The default constructor that sets the name property.
Declaration
protected ConfigBase(string name)
Parameters
|
System.String
name
The name value of the config instance will be set as Name property. |
Properties
Name
Gets or sets the name property.
Declaration
public virtual string Name { get; set; }
Property Value
|
System.String
|
Methods
ToString()
Overrwrites the default ToString method with the Name property.
Declaration
public override string ToString()
Returns
|
System.String
Returns an overwritten string. |
Overrides
System.Object.ToString()