33 get {
return ConfigurationManager.AppSettings[
"CslaAuthentication"]; }
34 set { ConfigurationManager.AppSettings[
"CslaAuthentication"] = value; }
46 if (ConfigurationManager.AppSettings[
"CslaAutoCloneOnUpdate"] ==
null)
49 return bool.Parse(ConfigurationManager.AppSettings[
"CslaAutoCloneOnUpdate"]);
53 ConfigurationManager.AppSettings[
"CslaAutoCloneOnUpdate"] = value.ToString();
62 get {
return ConfigurationManager.AppSettings[
"CslaDataPortalActivator"]; }
63 set { ConfigurationManager.AppSettings[
"CslaDataPortalActivator"] = value; }
71 get {
return ConfigurationManager.AppSettings[
"CslaDataPortalExceptionInspector"]; }
72 set { ConfigurationManager.AppSettings[
"CslaDataPortalExceptionInspector"] = value; }
81 get {
return ConfigurationManager.AppSettings[
"CslaAuthorizationProvider"]; }
82 set { ConfigurationManager.AppSettings[
"CslaAuthorizationProvider"] = value; }
93 get {
return ConfigurationManager.AppSettings[
"CslaDataPortalInterceptor"]; }
94 set { ConfigurationManager.AppSettings[
"CslaDataPortalInterceptor"] = value; }
102 get {
return ConfigurationManager.AppSettings[
"CslaDataPortalProxy"]; }
103 set { ConfigurationManager.AppSettings[
"CslaDataPortalProxy"] = value; }
114 get {
return ConfigurationManager.AppSettings[
"CslaDataPortalProxyFactory"]; }
115 set { ConfigurationManager.AppSettings[
"CslaDataPortalProxyFactory"] = value; }
128 if (ConfigurationManager.AppSettings[
"CslaDataPortalReturnObjectOnException"] ==
null)
131 return bool.Parse(ConfigurationManager.AppSettings[
"CslaDataPortalReturnObjectOnException"]);
142 get {
return ConfigurationManager.AppSettings[
"CslaDataPortalUrl"]; }
143 set { ConfigurationManager.AppSettings[
"CslaDataPortalUrl"] = value; }
154 get {
return ConfigurationManager.AppSettings[
"CslaObjectFactoryLoader"]; }
155 set { ConfigurationManager.AppSettings[
"CslaObjectFactoryLoader"] = value; }
169 if (ConfigurationManager.AppSettings[
"CslaFlowSynchronizationContext"] ==
null)
172 return bool.Parse(ConfigurationManager.AppSettings[
"CslaFlowSynchronizationContext"]);
174 set { ConfigurationManager.AppSettings[
"CslaFlowSynchronizationContext"] = value.ToString(); }
Use this type to configure the settings for the CSLA .NET data portal using dot net core
string Proxy
Gets or sets the default data portal proxy type
string Activator
Gets or sets an instance of the IDataPortalActivator provider.
string AuthenticationType
Returns the authentication type being used by the CSLA .NET framework.
string Interceptor
Gets or sets the type of interceptor invoked by the data portal for pre- and post-processing of each ...
bool FlowSynchronizationContext
Gets or sets a value indicating whether any synchronization context should be flowed to child tasks b...
bool ReturnObjectOnException
Gets or sets a value indicating whether the server-side business object should be returned to the cli...
string AuthorizationProvider
Sets the type name to be used for server-side data portal authorization.
string ExceptionInspector
Gets or sets the fully qualified name of the ExceptionInspector class.
string PortalUrl
Gets or sets the data portal URL string.
bool AutoCloneOnUpdate
Gets a value indicating whether objects should be automatically cloned by the data portal Update()met...
Class containing the default implementation for the FactoryLoader delegate used by the data portal ho...