SenseNet.ContentRepository.KPIDatasource.GetProperty C# (CSharp) Method

GetProperty() public method

public GetProperty ( string name ) : object
name string
return object
        public override object GetProperty(string name)
        {
            switch (name)
            {
                case "KPIData":
                    return this.KPIData;
                default:
                    return base.GetProperty(name);
            }
        }