SenseNet.ContentRepository.HttpEndpointDemoContent.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 "A":
                    return A;
                case "B":
                    return B;
                default:
                    return base.GetProperty(name);
            }
        }