You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ignia maintains a 128 character width standard for files. And, for the most part, that's honored. But a handful of areas—and especially comments, broke over the 128 character limit. In most case, this was likely due to refactoring or automated renames which made `<see/>` references longer. Regardless, the vast majority of these are fixed here. (There are a handful that were left as is due to Ignia not having a good multi-line standard for breaking up particular types of references; we'll want to establish a consistent way of handling those.)
Copy file name to clipboardExpand all lines: Ignia.Topics.Web/TopicRepository.cs
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,11 @@ public static class TopicRepository {
39
39
/// <summary>
40
40
/// Gets a list of available <see cref="ContentTypeDescriptor"/> objects from the Configuration.
41
41
/// </summary>
42
-
[Obsolete("The TopicRepository class is obsolete, as is the ContentTypes property. Instead, clients should use Dependency Injection with the ITopicRepository interface.",false)]
42
+
[Obsolete(
43
+
"The TopicRepository class is obsolete, as is the ContentTypes property. Instead, clients should use Dependency "+
@@ -55,7 +59,11 @@ public static ContentTypeDescriptorCollection ContentTypes {
55
59
/// <summary>
56
60
/// Static reference to the root <see cref="Topic"/>.
57
61
/// </summary>
58
-
[Obsolete("The TopicRepository class is obsolete, as is the RootTopic property. Instead, clients should use Dependency Injection with the ITopicRepository interface.",false)]
62
+
[Obsolete(
63
+
"The TopicRepository class is obsolete, as is the RootTopic property. Instead, clients should use Dependency Injection "+
64
+
"with the ITopicRepository interface.",
65
+
false
66
+
)]
59
67
publicstaticTopicRootTopic{
60
68
get{
61
69
if(_rootTopic==null){
@@ -75,7 +83,11 @@ public static Topic RootTopic {
75
83
/// <remarks>
76
84
/// The web.config stores information such as data providers, views directory, etc.
77
85
/// </remarks>
78
-
[Obsolete("The TopicRepository class is obsolete, as is the Configuration property. Instead, clients should use Dependency Injection with the ITopicRepository interface.",false)]
86
+
[Obsolete(
87
+
"The TopicRepository class is obsolete, as is the Configuration property. Instead, clients should use Dependency "+
88
+
"Injection with the ITopicRepository interface.",
89
+
false
90
+
)]
79
91
publicstaticTopicsSectionConfiguration{
80
92
get{
81
93
if(_configuration==null){
@@ -98,11 +110,18 @@ public static TopicsSection Configuration {
98
110
/// Pulled from the implementing website's configuration via the <see
[Obsolete("The TopicRepository class is obsolete, as is the TopicProviders property. Instead, clients should use Dependency Injection with the ITopicRepository interface.",false)]
113
+
[Obsolete(
114
+
"The TopicRepository class is obsolete, as is the TopicProviders property. Instead, clients should use Dependency "+
115
+
"Injection with the ITopicRepository interface.",
116
+
false
117
+
)]
102
118
publicstaticITopicRepositoryDataProvider{
103
119
get{
104
120
if(_topicRepository==null){
105
-
thrownewException("The TopicRepository has not been configured with an instance of ITopicProvider. Configure the application by setting the TopicRepository.DataProvider in e.g. the global.asax file.");
121
+
thrownewException(
122
+
"The TopicRepository has not been configured with an instance of ITopicProvider. Configure the application by "+
123
+
"setting the TopicRepository.DataProvider in e.g. the global.asax file."
0 commit comments