SenseNet.Messaging.NotificationConfig.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 SUBJECTPROPERTYNAME:
                    return this.Subject;
                case BODYPROPERTYNAME:
                    return this.Body;
                default:
                    return base.GetProperty(name);
            }
        }
        public override void SetProperty(string name, object value)