SenseNet.ContentRepository.UserProfile.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 "User":
                    return this.User;
                default:
                    return base.GetProperty(name);
            }
        }