Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all articles
Browse latest Browse all 2504

ServerConfigProperty not accessing new values (6 Comments)

$
0
0

Topic by Prasad

Hi All,

i have used below code for ServerConfigProperty.

private string x;
[ServerConfigProperty(DefaultValue = "12345")]
        public string yyy
        {
            get
            {
                return x;
            }
            set
            {
                x = value;

variable.ReportId=  x;
                
            }
        }

 

class:

class variable
    {
        public static string ReportId = "";     
    }

 

when i change property value in addin manager, it is not picking new value, always taking default value only. 

please help.

Thanks

Prasad


Viewing all articles
Browse latest Browse all 2504

Trending Articles