Hi team,
BlogPostsListOptions tobj = new BlogPostsListOptions();
var bposts = Apis.Get<IBlogPosts>().List(tobj);
We are getting the below error in 12.1.3 version. same code is working in older version.
Please help me to resolve this issue.
Hi team,
BlogPostsListOptions tobj = new BlogPostsListOptions();
var bposts = Apis.Get<IBlogPosts>().List(tobj);
We are getting the below error in 12.1.3 version. same code is working in older version.
Please help me to resolve this issue.
When is the Apis.Get<T>() method called? Is this within a plugin after the plugin's Initialize() method is called?
Also note that Apis.Get<IBlogPosts>() would return null if the blog application is disabled within Administration. When an application is disabled, all of its functionality is disabled/removed/inaccessible.
When is the Apis.Get<T>() method called? Is this within a plugin after the plugin's Initialize() method is called?
Also note that Apis.Get<IBlogPosts>() would return null if the blog application is disabled within Administration. When an application is disabled, all of its functionality is disabled/removed/inaccessible.