Open mgulubov opened 9 years ago
At the moment, Code Analysis on the RestSharp project, shows the following Naming Warnings. When the above warnings are fixed, Code Analysis should be run again and if any Naming issues remain, then they should be resolved as well.
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Iso' in member name 'DateFormat.Iso8601' or remove it entirely if it represents any sort of Hungarian notation. RestSharp Enum.cs 64
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in namespace name 'RestSharp.Authenticators.OAuth'. RestSharp (Global)
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Contrib' in namespace name 'RestSharp.Contrib'. RestSharp (Global)
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Deserializers' in namespace name 'RestSharp.Deserializers'. RestSharp (Global)
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Deserializer' in type name 'DotNetXmlDeserializer'. RestSharp DotNetXmlDeserializer.cs 25
CA1709 Identifiers should be cased correctly Correct the casing of 'GET' in member name 'Method.GET' by changing it to 'Get'. RestSharp Enum.cs 46
CA1709 Identifiers should be cased correctly Correct the casing of 'POST' in member name 'Method.POST' by changing it to 'Post'. RestSharp Enum.cs 47
CA1709 Identifiers should be cased correctly Correct the casing of 'PUT' in member name 'Method.PUT' by changing it to 'Put'. RestSharp Enum.cs 48
CA1709 Identifiers should be cased correctly Correct the casing of 'DELETE' in member name 'Method.DELETE' by changing it to 'Delete'. RestSharp Enum.cs 49
CA1709 Identifiers should be cased correctly Correct the casing of 'HEAD' in member name 'Method.HEAD' by changing it to 'Head'. RestSharp Enum.cs 50
CA1709 Identifiers should be cased correctly Correct the casing of 'OPTIONS' in member name 'Method.OPTIONS' by changing it to 'Options'. RestSharp Enum.cs 51
CA1709 Identifiers should be cased correctly Correct the casing of 'PATCH' in member name 'Method.PATCH' by changing it to 'Patch'. RestSharp Enum.cs 52
CA1709 Identifiers should be cased correctly Correct the casing of 'MERGE' in member name 'Method.MERGE' by changing it to 'Merge'. RestSharp Enum.cs 53
CA1702 Compound words should be cased correctly The compound word 'RoundTrip' in member name 'DateFormat.RoundTrip' exists as a discrete term. If your usage is intended to be single word, case it as 'Roundtrip' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp Enum.cs 69
CA1702 Compound words should be cased correctly In member 'FileParameter.Create(string, byte[], string, string)', the discrete term 'filename' in parameter name 'filename' should be expressed as a compound word, 'fileName'. RestSharp FileParameter.cs 20
CA1702 Compound words should be cased correctly In member 'FileParameter.Create(string, byte[], string)', the discrete term 'filename' in parameter name 'filename' should be expressed as a compound word, 'fileName'. RestSharp FileParameter.cs 45
CA1702 Compound words should be cased correctly In member 'HttpBasicAuthenticator.HttpBasicAuthenticator(string, string)', the discrete term 'username' in parameter name 'username' should be expressed as a compound word, 'userName'. RestSharp HttpBasicAuthenticator.cs 27
CA1702 Compound words should be cased correctly The compound word 'TimeStamp' in member name 'HttpCookie.TimeStamp' exists as a discrete term. If your usage is intended to be single word, case it as 'Timestamp' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp HttpCookie.cs 68
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.HtmlAttributeEncode(string, TextWriter)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 81
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.HtmlAttributeEncode(string)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 99
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecode(string)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 115
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecode(string, Encoding)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 136
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecode(string, Encoding)', consider providing a more meaningful name than parameter name 'e'. RestSharp HttpUtility.cs 136
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecode(byte[], Encoding)', consider providing a more meaningful name than parameter name 'e'. RestSharp HttpUtility.cs 194
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlDecode(byte[], Encoding)', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 194
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlDecode(byte[], int, int, Encoding)', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 259
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecode(byte[], int, int, Encoding)', consider providing a more meaningful name than parameter name 'e'. RestSharp HttpUtility.cs 259
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlDecodeToBytes(byte[])', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 339
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecodeToBytes(string)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 347
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecodeToBytes(string, Encoding)', consider providing a more meaningful name than parameter name 'e'. RestSharp HttpUtility.cs 352
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlDecodeToBytes(string, Encoding)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 352
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlDecodeToBytes(byte[], int, int)', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 363
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncode(string)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 407
CA1709 Identifiers should be cased correctly In member 'HttpUtility.UrlEncode(string, Encoding)', correct the casing of 'Enc' in parameter name 'Enc' by changing it to 'enc'. RestSharp HttpUtility.cs 412
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncode(string, Encoding)', correct the spelling of 'Enc' in parameter name 'Enc' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 412
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncode(string, Encoding)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 412
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlEncode(byte[])', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 448
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlEncode(byte[], int, int)', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 461
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncodeToBytes(string)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 474
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncodeToBytes(string, Encoding)', consider providing a more meaningful name than parameter name 'e'. RestSharp HttpUtility.cs 479
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncodeToBytes(string, Encoding)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 479
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlEncodeToBytes(byte[])', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 492
CA1720 Identifiers should not contain type names In member 'HttpUtility.UrlEncodeToBytes(byte[], int, int)', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp HttpUtility.cs 503
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncodeUnicode(string)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 515
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlEncodeUnicodeToBytes(string)', correct the spelling of 'str' in parameter name 'str' or remove it entirely if it represents any sort of Hungarian notation. RestSharp HttpUtility.cs 525
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.HtmlDecode(string)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 548
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.HtmlDecode(string, TextWriter)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 569
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.HtmlEncode(string)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 590
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.HtmlEncode(string, TextWriter)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 611
CA1704 Identifiers should be spelled correctly In method 'HttpUtility.UrlPathEncode(string)', consider providing a more meaningful name than parameter name 's'. RestSharp HttpUtility.cs 730
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Deserializer' in type name 'IDeserializer'. RestSharp IDeserializer.cs 19
CA1716 Identifiers should not match keywords Rename virtual/interface member 'IDeserializer.Namespace' so that it no longer conflicts with the reserved language keyword 'Namespace'. Using a reserved keyword as the name of a virtual/interface member makes it harder for consumers in other languages to override/implement the member. RestSharp IDeserializer.cs 23
CA1716 Identifiers should not match keywords Rename virtual/interface member 'IHttp.Get()' so that it no longer conflicts with the reserved language keyword 'Get'. Using a reserved keyword as the name of a virtual/interface member makes it harder for consumers in other languages to override/implement the member. RestSharp IHttp.cs 115
CA1716 Identifiers should not match keywords Rename virtual/interface member 'IRestClient.AddHandler(string, IDeserializer)' so that it no longer conflicts with the reserved language keyword 'AddHandler'. Using a reserved keyword as the name of a virtual/interface member makes it harder for consumers in other languages to override/implement the member. RestSharp IRestClient.cs 120
CA1704 Identifiers should be spelled correctly In method 'IRestClient.AddHandler(string, IDeserializer)', correct the spelling of 'deserializer' in parameter name 'deserializer' or remove it entirely if it represents any sort of Hungarian notation. RestSharp IRestClient.cs 120
CA1716 Identifiers should not match keywords Rename virtual/interface member 'IRestClient.RemoveHandler(string)' so that it no longer conflicts with the reserved language keyword 'RemoveHandler'. Using a reserved keyword as the name of a virtual/interface member makes it harder for consumers in other languages to override/implement the member. RestSharp IRestClient.cs 122
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddFile(string, byte[], string, string)', consider replacing the data type identifier 'bytes' in parameter name 'bytes' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 151
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddBody(object, string)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 171
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddBody(object)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 179
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddJsonBody(object)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 186
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddXmlBody(object)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 193
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddXmlBody(object, string)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 202
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddObject(object, params string[])', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 213
CA1720 Identifiers should not contain type names In member 'IRestRequest.AddObject(object)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp IRestRequest.cs 220
CA1704 Identifiers should be spelled correctly In method 'IRestRequest.AddParameter(Parameter)', consider providing a more meaningful name than parameter name 'p'. RestSharp IRestRequest.cs 227
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Num' in member name 'IRestRequest.IncreaseNumAttempts()' or remove it entirely if it represents any sort of Hungarian notation. RestSharp IRestRequest.cs 285
CA1720 Identifiers should not contain type names In member 'ISerializer.Serialize(object)', consider replacing the data type identifier 'obj' in parameter name 'obj' with a more generic term, such as 'value'. RestSharp ISerializer.cs 21
CA1716 Identifiers should not match keywords Rename virtual/interface member 'ISerializer.Namespace' so that it no longer conflicts with the reserved language keyword 'Namespace'. Using a reserved keyword as the name of a virtual/interface member makes it harder for consumers in other languages to override/implement the member. RestSharp ISerializer.cs 25
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Deserializer' in type name 'JsonDeserializer'. RestSharp JsonDeserializer.cs 12
CA1702 Compound words should be cased correctly In member 'NtlmAuthenticator.NtlmAuthenticator(string, string)', the discrete term 'username' in parameter name 'username' should be expressed as a compound word, 'userName'. RestSharp NtlmAuthenticator.cs 42
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuth1Authenticator'. RestSharp OAuth1Authenticator.cs 34
CA1702 Compound words should be cased correctly In member 'OAuth1Authenticator.ForClientAuthentication(string, string, string, string)', the discrete term 'username' in parameter name 'username' should be expressed as a compound word, 'userName'. RestSharp OAuth1Authenticator.cs 131
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuth2Authenticator'. RestSharp OAuth2Authenticator.cs 33
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuth2UriQueryParameterAuthenticator'. RestSharp OAuth2Authenticator.cs 68
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuth2AuthorizationRequestHeaderAuthenticator'. RestSharp OAuth2Authenticator.cs 91
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuthParameterHandling'. RestSharp OAuthParameterHandling.cs 8
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuthSignatureMethod'. RestSharp OAuthSignatureMethod.cs 8
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Sha' in member name 'OAuthSignatureMethod.HmacSha1' or remove it entirely if it represents any sort of Hungarian notation. RestSharp OAuthSignatureMethod.cs 10
CA1702 Compound words should be cased correctly The compound word 'PlainText' in member name 'OAuthSignatureMethod.PlainText' exists as a discrete term. If your usage is intended to be single word, case it as 'Plaintext' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp OAuthSignatureMethod.cs 11
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Sha' in member name 'OAuthSignatureMethod.RsaSha1' or remove it entirely if it represents any sort of Hungarian notation. RestSharp OAuthSignatureMethod.cs 12
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuthSignatureTreatment'. RestSharp OAuthSignatureTreatment.cs 8
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Unescaped' in member name 'OAuthSignatureTreatment.Unescaped' or remove it entirely if it represents any sort of Hungarian notation. RestSharp OAuthSignatureTreatment.cs 11
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuthType'. RestSharp OAuthType.cs 8
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Auth' in type name 'OAuthWebQueryInfo'. RestSharp OAuthWebQueryInfo.cs 8
CA1702 Compound words should be cased correctly The discrete term 'Username' in member name 'OAuthWebQueryInfo.ClientUsername' should be expressed as a compound word, 'UserName'. RestSharp OAuthWebQueryInfo.cs 30
CA1721 Property names should not match get methods The property name 'Parameter.Type' is confusing given the existence of inherited method 'object.GetType()'. Rename or remove this property. RestSharp Parameter.cs 37
CA2204 Literals should be spelled correctly Correct the spelling of the unrecognized token 'RestClient' in the literal '"RestClient must contain a value for BaseUrl"'. RestSharp RestClient.cs 286
CA2204 Literals should be spelled correctly Correct the spelling of the unrecognized token 'BaseUrl' in the literal '"RestClient must contain a value for BaseUrl"'. RestSharp RestClient.cs 286
CA1704 Identifiers should be spelled correctly In method 'RestClientExtensions.AddDefaultParameter(this IRestClient, Parameter)', consider providing a more meaningful name than parameter name 'p'. RestSharp RestClientExtensions.cs 269
CA2204 Literals should be spelled correctly Correct the spelling of the unrecognized token 'AddBody' in the literal '"Cannot set request body from default headers. Use Request.AddBody() instead."'. RestSharp RestClientExtensions.cs 272
CA1702 Compound words should be cased correctly The compound word 'TimeStamp' in member name 'RestResponseCookie.TimeStamp' exists as a discrete term. If your usage is intended to be single word, case it as 'Timestamp' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp RestResponseCookie.cs 65
CA1702 Compound words should be cased correctly The compound word 'LowerCase' in member name 'NameStyle.LowerCase' exists as a discrete term. If your usage is intended to be single word, case it as 'Lowercase' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp SerializeAsAttribute.cs 95
CA1702 Compound words should be cased correctly In member 'SimpleAuthenticator.SimpleAuthenticator(string, string, string, string)', the discrete term 'username' in parameter name 'usernameKey' should be expressed as a compound word, 'userName'. RestSharp SimpleAuthenticator.cs 26
CA1702 Compound words should be cased correctly In member 'SimpleAuthenticator.SimpleAuthenticator(string, string, string, string)', the discrete term 'username' in parameter name 'username' should be expressed as a compound word, 'userName'. RestSharp SimpleAuthenticator.cs 26
CA1702 Compound words should be cased correctly The compound word 'LowerCase' in member name 'StringExtensions.MakeInitialLowerCase(this string)' exists as a discrete term. If your usage is intended to be single word, case it as 'Lowercase' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp StringExtensions.cs 330
CA1702 Compound words should be cased correctly The compound word 'UpperCase' in member name 'StringExtensions.IsUpperCase(this string)' exists as a discrete term. If your usage is intended to be single word, case it as 'Uppercase' or strip the first token entirely if it represents any sort of Hungarian notation. RestSharp StringExtensions.cs 340
CA1720 Identifiers should not contain type names In member 'StringExtensions.IsUpperCase(this string)', consider replacing the data type identifier 'String' in parameter name 'inputString' with a more generic term, such as 'value'. RestSharp StringExtensions.cs 340
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Deserializer' in type name 'XmlAttributeDeserializer'. RestSharp XmlAttributeDeserializer.cs 23
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Deserializer' in type name 'XmlDeserializer'. RestSharp XmlDeserializer.cs 30
CA1704 Identifiers should be spelled correctly In method 'XmlDeserializer.Map(object, XElement)', consider providing a more meaningful name than parameter name 'x'. RestSharp XmlDeserializer.cs 104
CA1704 Identifiers should be spelled correctly In method 'XmlDeserializer.CreateAndMap(Type, XElement)', consider providing a more meaningful name than parameter name 't'. RestSharp XmlDeserializer.cs 382
CA1704 Identifiers should be spelled correctly Correct the spelling of 'Namespaced' in member name 'XmlExtensions.AsNamespaced(this string, string)' or remove it entirely if it represents any sort of Hungarian notation. RestSharp XmlExtensions.cs 33
The following Warnings appear, when StyleCop examines the RestSharp project:
Warning 657 SA1000 : CSharp.Spacing : The spacing around the keyword 'typeof' is invalid. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 125 39 RestSharp Warning 784 SA1004 : CSharp.Spacing : The documentation header line must start with a single space. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 19 6 RestSharp Warning 785 SA1004 : CSharp.Spacing : The documentation header line must start with a single space. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 21 6 RestSharp Warning 174 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 215 36 RestSharp Warning 696 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 29 14 RestSharp Warning 756 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 224 34 RestSharp Warning 757 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 273 22 RestSharp Warning 762 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 321 15 RestSharp Warning 829 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 8 2 RestSharp Warning 920 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 618 18 RestSharp Warning 921 SA1005 : CSharp.Spacing : The comment must start with a single space. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 619 18 RestSharp Warning 658 SA1008 : CSharp.Spacing : Invalid spacing around the opening parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 125 45 RestSharp Warning 87 SA1009 : CSharp.Spacing : Invalid spacing around the closing parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 95 2 RestSharp Warning 544 SA1009 : CSharp.Spacing : Invalid spacing around the closing parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 299 2 RestSharp Warning 687 SA1009 : CSharp.Spacing : Invalid spacing around the closing parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 235 2 RestSharp Warning 897 SA1009 : CSharp.Spacing : Invalid spacing around the closing parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 285 2 RestSharp Warning 904 SA1009 : CSharp.Spacing : Invalid spacing around the closing parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 374 2 RestSharp Warning 916 SA1009 : CSharp.Spacing : Invalid spacing around the closing parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 611 2 RestSharp Warning 168 SA1025 : CSharp.Spacing : The code contains multiple spaces in a row. Only one space is needed. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 149 23 RestSharp Warning 552 SA1101 : CSharp.Readability : The call to _accessToken must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 48 14 RestSharp Warning 553 SA1101 : CSharp.Readability : The call to _accessToken must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 56 27 RestSharp Warning 9 SA1101 : CSharp.Readability : The call to _authHeader must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 30 14 RestSharp Warning 11 SA1101 : CSharp.Readability : The call to _authHeader must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 45 56 RestSharp Warning 368 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 20 27 RestSharp Warning 370 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 25 27 RestSharp Warning 372 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 30 14 RestSharp Warning 395 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 50 18 RestSharp Warning 399 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 66 18 RestSharp Warning 401 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 72 14 RestSharp Warning 403 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 77 14 RestSharp Warning 405 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 85 18 RestSharp Warning 411 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 101 45 RestSharp Warning 412 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 103 14 RestSharp Warning 414 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 114 29 RestSharp Warning 416 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 123 14 RestSharp Warning 418 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 130 21 RestSharp Warning 422 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 140 14 RestSharp Warning 424 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 145 14 RestSharp Warning 426 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 150 21 RestSharp Warning 428 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 155 14 RestSharp Warning 430 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 160 21 RestSharp Warning 432 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 165 27 RestSharp Warning 434 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 170 27 RestSharp Warning 436 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 175 21 RestSharp Warning 438 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 180 14 RestSharp Warning 440 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 185 14 RestSharp Warning 442 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 190 27 RestSharp Warning 443 SA1101 : CSharp.Readability : The call to _parameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 191 20 RestSharp Warning 582 SA1101 : CSharp.Readability : The call to _password must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 31 14 RestSharp Warning 587 SA1101 : CSharp.Readability : The call to _password must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 37 49 RestSharp Warning 581 SA1101 : CSharp.Readability : The call to _passwordKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 30 14 RestSharp Warning 586 SA1101 : CSharp.Readability : The call to _passwordKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 37 35 RestSharp Warning 580 SA1101 : CSharp.Readability : The call to _username must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 29 14 RestSharp Warning 585 SA1101 : CSharp.Readability : The call to _username must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 36 49 RestSharp Warning 579 SA1101 : CSharp.Readability : The call to _usernameKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 28 14 RestSharp Warning 584 SA1101 : CSharp.Readability : The call to _usernameKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 36 35 RestSharp Warning 256 SA1101 : CSharp.Readability : The call to AccessTokenUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 138 32 RestSharp Warning 275 SA1101 : CSharp.Readability : The call to AccessTokenUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 185 32 RestSharp Warning 310 SA1101 : CSharp.Readability : The call to AccessTokenUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 303 18 RestSharp Warning 315 SA1101 : CSharp.Readability : The call to AccessTokenUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 326 18 RestSharp Warning 237 SA1101 : CSharp.Readability : The call to AddAuthParameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 85 14 RestSharp Warning 257 SA1101 : CSharp.Readability : The call to AddAuthParameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 142 14 RestSharp Warning 291 SA1101 : CSharp.Readability : The call to AddAuthParameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 257 14 RestSharp Warning 374 SA1101 : CSharp.Readability : The call to AddCollection must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 37 14 RestSharp Warning 377 SA1101 : CSharp.Readability : The call to AddCollection must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 42 14 RestSharp Warning 397 SA1101 : CSharp.Readability : The call to AddCollection must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 58 14 RestSharp Warning 407 SA1101 : CSharp.Readability : The call to AddCollection must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 91 14 RestSharp Warning 409 SA1101 : CSharp.Readability : The call to AddCollection must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 96 14 RestSharp Warning 533 SA1101 : CSharp.Readability : The call to AddOAuthData must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 182 14 RestSharp Warning 276 SA1101 : CSharp.Readability : The call to AddXAuthParameters must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 189 14 RestSharp Warning 252 SA1101 : CSharp.Readability : The call to BuildAccessTokenInfo must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 118 21 RestSharp Warning 640 SA1101 : CSharp.Readability : The call to BuildDictionary must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 49 30 RestSharp Warning 680 SA1101 : CSharp.Readability : The call to BuildDictionary must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 304 33 RestSharp Warning 683 SA1101 : CSharp.Readability : The call to BuildDictionary must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 321 25 RestSharp Warning 636 SA1101 : CSharp.Readability : The call to BuildList must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 38 34 RestSharp Warning 638 SA1101 : CSharp.Readability : The call to BuildList must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 43 34 RestSharp Warning 655 SA1101 : CSharp.Readability : The call to BuildList must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 133 29 RestSharp Warning 679 SA1101 : CSharp.Readability : The call to BuildList must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 294 29 RestSharp Warning 682 SA1101 : CSharp.Readability : The call to BuildList must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 316 25 RestSharp Warning 233 SA1101 : CSharp.Readability : The call to BuildRequestTokenInfo must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 61 21 RestSharp Warning 247 SA1101 : CSharp.Readability : The call to CallbackUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 101 57 RestSharp Warning 269 SA1101 : CSharp.Readability : The call to CallbackUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 160 29 RestSharp Warning 302 SA1101 : CSharp.Readability : The call to CallbackUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 275 29 RestSharp Warning 329 SA1101 : CSharp.Readability : The call to CallbackUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 378 67 RestSharp Warning 330 SA1101 : CSharp.Readability : The call to CallbackUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 376 19 RestSharp Warning 527 SA1101 : CSharp.Readability : The call to CallbackUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 174 32 RestSharp Warning 282 SA1101 : CSharp.Readability : The call to ClientPassword must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 200 35 RestSharp Warning 319 SA1101 : CSharp.Readability : The call to ClientPassword must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 341 52 RestSharp Warning 337 SA1101 : CSharp.Readability : The call to ClientPassword must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 402 49 RestSharp Warning 532 SA1101 : CSharp.Readability : The call to ClientPassword must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 179 35 RestSharp Warning 281 SA1101 : CSharp.Readability : The call to ClientUsername must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 199 35 RestSharp Warning 318 SA1101 : CSharp.Readability : The call to ClientUsername must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 341 18 RestSharp Warning 336 SA1101 : CSharp.Readability : The call to ClientUsername must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 401 49 RestSharp Warning 531 SA1101 : CSharp.Readability : The call to ClientUsername must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 178 35 RestSharp Warning 243 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 94 32 RestSharp Warning 263 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 151 32 RestSharp Warning 283 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 201 32 RestSharp Warning 297 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 267 32 RestSharp Warning 307 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 290 18 RestSharp Warning 311 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 308 18 RestSharp Warning 316 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 331 18 RestSharp Warning 321 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 349 18 RestSharp Warning 324 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 364 52 RestSharp Warning 338 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 404 52 RestSharp Warning 520 SA1101 : CSharp.Readability : The call to ConsumerKey must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 167 32 RestSharp Warning 241 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 88 106 RestSharp Warning 249 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 103 35 RestSharp Warning 260 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 145 106 RestSharp Warning 271 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 162 35 RestSharp Warning 279 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 192 106 RestSharp Warning 288 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 209 35 RestSharp Warning 294 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 261 70 RestSharp Warning 303 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 276 35 RestSharp Warning 308 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 295 18 RestSharp Warning 312 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 313 18 RestSharp Warning 317 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 336 18 RestSharp Warning 322 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 354 18 RestSharp Warning 521 SA1101 : CSharp.Readability : The call to ConsumerSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 168 35 RestSharp Warning 653 SA1101 : CSharp.Readability : The call to ConvertValue must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 111 44 RestSharp Warning 656 SA1101 : CSharp.Readability : The call to ConvertValue must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 137 29 RestSharp Warning 660 SA1101 : CSharp.Readability : The call to ConvertValue must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 158 37 RestSharp Warning 661 SA1101 : CSharp.Readability : The call to ConvertValue must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 179 37 RestSharp Warning 662 SA1101 : CSharp.Readability : The call to ConvertValue must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 186 27 RestSharp Warning 681 SA1101 : CSharp.Readability : The call to CreateAndMap must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 310 29 RestSharp Warning 684 SA1101 : CSharp.Readability : The call to CreateAndMap must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 326 25 RestSharp Warning 754 SA1101 : CSharp.Readability : The call to CreateAndMap must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 289 45 RestSharp Warning 761 SA1101 : CSharp.Readability : The call to CreateAndMap must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 324 30 RestSharp Warning 29 SA1101 : CSharp.Readability : The call to credentials must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 59 36 RestSharp Warning 633 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 24 14 RestSharp Warning 652 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 99 64 RestSharp Warning 670 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 194 56 RestSharp Warning 671 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 213 48 RestSharp Warning 672 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 218 57 RestSharp Warning 674 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 241 72 RestSharp Warning 676 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 246 53 RestSharp Warning 677 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 269 76 RestSharp Warning 678 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 271 52 RestSharp Warning 715 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 42 14 RestSharp Warning 742 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 171 62 RestSharp Warning 743 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 175 75 RestSharp Warning 745 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 191 84 RestSharp Warning 747 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 195 67 RestSharp Warning 748 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 234 62 RestSharp Warning 766 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 354 51 RestSharp Warning 773 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 391 53 RestSharp Warning 780 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 434 57 RestSharp Warning 782 SA1101 : CSharp.Readability : The call to Culture must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 471 45 RestSharp Warning 673 SA1101 : CSharp.Readability : The call to DateFormat must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 241 60 RestSharp Warning 675 SA1101 : CSharp.Readability : The call to DateFormat must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 239 22 RestSharp Warning 744 SA1101 : CSharp.Readability : The call to DateFormat must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 191 72 RestSharp Warning 746 SA1101 : CSharp.Readability : The call to DateFormat must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 189 26 RestSharp Warning 635 SA1101 : CSharp.Readability : The call to FindRoot must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 37 33 RestSharp Warning 639 SA1101 : CSharp.Readability : The call to FindRoot must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 48 29 RestSharp Warning 641 SA1101 : CSharp.Readability : The call to FindRoot must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 53 29 RestSharp Warning 778 SA1101 : CSharp.Readability : The call to GetAttributeByName must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 412 38 RestSharp Warning 538 SA1101 : CSharp.Readability : The call to GetAuthorizationHeader must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 264 57 RestSharp Warning 740 SA1101 : CSharp.Readability : The call to GetElementByName must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 137 38 RestSharp Warning 749 SA1101 : CSharp.Readability : The call to GetElementByName must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 252 38 RestSharp Warning 753 SA1101 : CSharp.Readability : The call to GetElementByName must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 285 44 RestSharp Warning 777 SA1101 : CSharp.Readability : The call to GetElementByName must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 408 32 RestSharp Warning 420 SA1101 : CSharp.Readability : The call to GetEnumerator must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 135 21 RestSharp Warning 739 SA1101 : CSharp.Readability : The call to GetValueFromXml must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 129 30 RestSharp Warning 723 SA1101 : CSharp.Readability : The call to HandleListDerivative must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 69 25 RestSharp Warning 752 SA1101 : CSharp.Readability : The call to HandleListDerivative must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 268 33 RestSharp Warning 642 SA1101 : CSharp.Readability : The call to Map must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 54 30 RestSharp Warning 689 SA1101 : CSharp.Readability : The call to Map must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 336 14 RestSharp Warning 724 SA1101 : CSharp.Readability : The call to Map must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 73 25 RestSharp Warning 770 SA1101 : CSharp.Readability : The call to Map must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 375 18 RestSharp Warning 774 SA1101 : CSharp.Readability : The call to Map must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 396 18 RestSharp Warning 344 SA1101 : CSharp.Readability : The call to Name must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 7 14 RestSharp Warning 719 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 55 67 RestSharp Warning 722 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 59 19 RestSharp Warning 737 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 122 57 RestSharp Warning 738 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 126 52 RestSharp Warning 750 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 252 84 RestSharp Warning 764 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 343 66 RestSharp Warning 765 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 348 62 RestSharp Warning 767 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 354 73 RestSharp Warning 768 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 365 62 RestSharp Warning 771 SA1101 : CSharp.Readability : The call to Namespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 375 63 RestSharp Warning 242 SA1101 : CSharp.Readability : The call to ParameterHandling must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 93 38 RestSharp Warning 262 SA1101 : CSharp.Readability : The call to ParameterHandling must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 150 38 RestSharp Warning 280 SA1101 : CSharp.Readability : The call to ParameterHandling must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 197 38 RestSharp Warning 296 SA1101 : CSharp.Readability : The call to ParameterHandling must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 266 38 RestSharp Warning 522 SA1101 : CSharp.Readability : The call to ParameterHandling must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 169 38 RestSharp Warning 539 SA1101 : CSharp.Readability : The call to ParameterHandling must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 260 22 RestSharp Warning 741 SA1101 : CSharp.Readability : The call to PopulateListFromElements must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 143 30 RestSharp Warning 751 SA1101 : CSharp.Readability : The call to PopulateListFromElements must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 259 26 RestSharp Warning 769 SA1101 : CSharp.Readability : The call to PopulateListFromElements must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 369 14 RestSharp Warning 542 SA1101 : CSharp.Readability : The call to Realm must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 289 84 RestSharp Warning 543 SA1101 : CSharp.Readability : The call to Realm must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 287 19 RestSharp Warning 721 SA1101 : CSharp.Readability : The call to RemoveNamespace must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 61 18 RestSharp Warning 238 SA1101 : CSharp.Readability : The call to RequestTokenUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 87 80 RestSharp Warning 306 SA1101 : CSharp.Readability : The call to RequestTokenUrl must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 285 18 RestSharp Warning 637 SA1101 : CSharp.Readability : The call to RootElement must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 35 22 RestSharp Warning 644 SA1101 : CSharp.Readability : The call to RootElement must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 66 30 RestSharp Warning 645 SA1101 : CSharp.Readability : The call to RootElement must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 64 18 RestSharp Warning 646 SA1101 : CSharp.Readability : The call to RootElement must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 64 61 RestSharp Warning 718 SA1101 : CSharp.Readability : The call to RootElement must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 55 42 RestSharp Warning 720 SA1101 : CSharp.Readability : The call to RootElement must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 53 18 RestSharp Warning 333 SA1101 : CSharp.Readability : The call to SessionHandle must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 388 73 RestSharp Warning 334 SA1101 : CSharp.Readability : The call to SessionHandle must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 386 19 RestSharp Warning 528 SA1101 : CSharp.Readability : The call to SessionHandle must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 175 34 RestSharp Warning 239 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 88 54 RestSharp Warning 244 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 95 36 RestSharp Warning 258 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 145 54 RestSharp Warning 265 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 153 36 RestSharp Warning 277 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 192 54 RestSharp Warning 284 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 202 36 RestSharp Warning 292 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 261 18 RestSharp Warning 299 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 269 36 RestSharp Warning 325 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 366 56 RestSharp Warning 339 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 405 56 RestSharp Warning 523 SA1101 : CSharp.Readability : The call to SignatureMethod must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 170 36 RestSharp Warning 240 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 88 71 RestSharp Warning 245 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 96 39 RestSharp Warning 259 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 145 71 RestSharp Warning 266 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 154 39 RestSharp Warning 278 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 192 71 RestSharp Warning 285 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 203 39 RestSharp Warning 293 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 261 35 RestSharp Warning 300 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 270 39 RestSharp Warning 524 SA1101 : CSharp.Readability : The call to SignatureTreatment must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 171 39 RestSharp Warning 264 SA1101 : CSharp.Readability : The call to Token must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 152 26 RestSharp Warning 298 SA1101 : CSharp.Readability : The call to Token must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 268 26 RestSharp Warning 313 SA1101 : CSharp.Readability : The call to Token must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 318 18 RestSharp Warning 327 SA1101 : CSharp.Readability : The call to Token must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 373 64 RestSharp Warning 328 SA1101 : CSharp.Readability : The call to Token must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 371 19 RestSharp Warning 529 SA1101 : CSharp.Readability : The call to Token must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 176 26 RestSharp Warning 248 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 102 32 RestSharp Warning 261 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 145 122 RestSharp Warning 270 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 161 32 RestSharp Warning 287 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 208 32 RestSharp Warning 295 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 261 86 RestSharp Warning 304 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 277 32 RestSharp Warning 530 SA1101 : CSharp.Readability : The call to TokenSecret must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 177 32 RestSharp Warning 537 SA1101 : CSharp.Readability : The call to Type must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 235 22 RestSharp Warning 255 SA1101 : CSharp.Readability : The call to ValidateAccessRequestState must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 131 14 RestSharp Warning 274 SA1101 : CSharp.Readability : The call to ValidateClientAuthAccessRequestState must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 178 14 RestSharp Warning 290 SA1101 : CSharp.Readability : The call to ValidateProtectedResourceState must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 217 14 RestSharp Warning 236 SA1101 : CSharp.Readability : The call to ValidateTokenRequestState must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 75 14 RestSharp Warning 345 SA1101 : CSharp.Readability : The call to Value must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 8 14 RestSharp Warning 268 SA1101 : CSharp.Readability : The call to Verifier must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 159 29 RestSharp Warning 331 SA1101 : CSharp.Readability : The call to Verifier must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 383 67 RestSharp Warning 332 SA1101 : CSharp.Readability : The call to Verifier must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 381 19 RestSharp Warning 525 SA1101 : CSharp.Readability : The call to Verifier must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 172 29 RestSharp Warning 246 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 100 28 RestSharp Warning 267 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 158 28 RestSharp Warning 286 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 207 28 RestSharp Warning 301 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 274 28 RestSharp Warning 326 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 368 47 RestSharp Warning 340 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 408 47 RestSharp Warning 526 SA1101 : CSharp.Readability : The call to Version must begin with the 'this.' prefix to indicate that the item is a member of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 173 28 RestSharp Warning 86 SA1111 : CSharp.Readability : The closing parenthesis or bracket must be placed on the same line as the last parameter in the parameter list. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 95 1 RestSharp Warning 541 SA1111 : CSharp.Readability : The closing parenthesis or bracket must be placed on the same line as the last parameter in the parameter list. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 299 1 RestSharp Warning 493 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 87 1 RestSharp Warning 497 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 104 1 RestSharp Warning 498 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 105 1 RestSharp Warning 502 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 112 1 RestSharp Warning 503 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 113 1 RestSharp Warning 507 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 120 1 RestSharp Warning 508 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 121 1 RestSharp Warning 512 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 129 1 RestSharp Warning 513 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 130 1 RestSharp Warning 517 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 146 1 RestSharp Warning 518 SA1115 : CSharp.Readability : The parameter must begin on the line after the previous parameter. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 147 1 RestSharp Warning 180 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 297 1 RestSharp Warning 492 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 87 1 RestSharp Warning 496 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 104 1 RestSharp Warning 501 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 112 1 RestSharp Warning 506 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 120 1 RestSharp Warning 511 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 129 1 RestSharp Warning 516 SA1116 : CSharp.Readability : If the method parameters are on separate lines, the first parameter must begin on the line beneath the name of the method. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 146 1 RestSharp Warning 491 SA1117 : CSharp.Readability : All method parameters must be placed on the same line, or each parameter must be placed on a separate line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 87 1 RestSharp Warning 495 SA1117 : CSharp.Readability : All method parameters must be placed on the same line, or each parameter must be placed on a separate line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 104 1 RestSharp Warning 500 SA1117 : CSharp.Readability : All method parameters must be placed on the same line, or each parameter must be placed on a separate line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 112 1 RestSharp Warning 505 SA1117 : CSharp.Readability : All method parameters must be placed on the same line, or each parameter must be placed on a separate line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 120 1 RestSharp Warning 510 SA1117 : CSharp.Readability : All method parameters must be placed on the same line, or each parameter must be placed on a separate line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 129 1 RestSharp Warning 515 SA1117 : CSharp.Readability : All method parameters must be placed on the same line, or each parameter must be placed on a separate line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 146 1 RestSharp Warning 95 SA1119 : CSharp.Maintainability : The line contains unnecessary parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 22 29 RestSharp Warning 157 SA1119 : CSharp.Maintainability : The line contains unnecessary parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 51 35 RestSharp Warning 759 SA1119 : CSharp.Maintainability : The line contains unnecessary parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 307 27 RestSharp Warning 915 SA1119 : CSharp.Maintainability : The line contains unnecessary parenthesis. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 607 21 RestSharp Warning 817 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 1 2 RestSharp Warning 818 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 9 2 RestSharp Warning 819 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 28 2 RestSharp Warning 825 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 1 2 RestSharp Warning 826 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 11 2 RestSharp Warning 827 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 13 2 RestSharp Warning 828 SA1120 : CSharp.Readability : The comment is empty. Add text to the comment or remove it. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 32 2 RestSharp Warning 913 SA1121 : CSharp.Readability : Use the built-in type alias 'char' rather than Char or System.Char. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 563 1 RestSharp Warning 668 SA1121 : CSharp.Readability : Use the built-in type alias 'decimal' rather than Decimal or System.Decimal. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 269 1 RestSharp Warning 669 SA1121 : CSharp.Readability : Use the built-in type alias 'decimal' rather than Decimal or System.Decimal. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 271 1 RestSharp Warning 686 SA1121 : CSharp.Readability : Use the built-in type alias 'decimal' rather than Decimal or System.Decimal. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 263 1 RestSharp Warning 736 SA1121 : CSharp.Readability : Use the built-in type alias 'decimal' rather than Decimal or System.Decimal. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 234 1 RestSharp Warning 755 SA1121 : CSharp.Readability : Use the built-in type alias 'decimal' rather than Decimal or System.Decimal. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 232 1 RestSharp Warning 685 SA1121 : CSharp.Readability : Use the built-in type alias 'object' rather than Object or System.Object. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 206 1 RestSharp Warning 65 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 14 1 RestSharp Warning 66 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 15 1 RestSharp Warning 68 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 20 1 RestSharp Warning 71 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 30 1 RestSharp Warning 73 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 35 1 RestSharp Warning 75 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 40 1 RestSharp Warning 83 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 75 1 RestSharp Warning 166 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 144 1 RestSharp Warning 181 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 305 1 RestSharp Warning 667 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 200 1 RestSharp Warning 735 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 155 1 RestSharp Warning 775 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 385 1 RestSharp Warning 863 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 129 1 RestSharp Warning 864 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 134 1 RestSharp Warning 881 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 158 1 RestSharp Warning 885 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 230 1 RestSharp Warning 896 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 274 1 RestSharp Warning 903 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 362 1 RestSharp Warning 912 SA1121 : CSharp.Readability : Use the built-in type alias 'string' rather than String or System.String. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 422 1 RestSharp Warning 167 SA1122 : CSharp.Readability : Use string.Empty rather than "". C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 144 1 RestSharp Warning 173 SA1122 : CSharp.Readability : Use string.Empty rather than "". C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 212 1 RestSharp Warning 250 SA1122 : CSharp.Readability : Use string.Empty rather than "". C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 101 1 RestSharp Warning 815 SA1122 : CSharp.Readability : Use string.Empty rather than "". C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 90 1 RestSharp Warning 565 SA1126 : CSharp.Readability : The call to _authorizationValue must begin with the 'this.', 'base.', 'object.' or 'OAuth2AuthorizationRequestHeaderAuthenticator.' or 'OAuth2Authenticator.' prefix to indicate the intended method call. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 120 14 RestSharp Warning 567 SA1126 : CSharp.Readability : The call to _authorizationValue must begin with the 'this.', 'base.', 'object.' or 'OAuth2AuthorizationRequestHeaderAuthenticator.' or 'OAuth2Authenticator.' prefix to indicate the intended method call. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 128 56 RestSharp Warning 560 SA1126 : CSharp.Readability : The call to AccessToken must begin with the 'this.', 'base.', 'object.' or 'OAuth2UriQueryParameterAuthenticator.' or 'OAuth2Authenticator.' prefix to indicate the intended method call. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 81 50 RestSharp Warning 2 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 17 1 RestSharp Warning 3 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 18 1 RestSharp Warning 4 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 19 1 RestSharp Warning 16 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 17 1 RestSharp Warning 17 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 18 1 RestSharp Warning 31 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 1 1 RestSharp Warning 32 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 2 1 RestSharp Warning 33 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 3 1 RestSharp Warning 34 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 4 1 RestSharp Warning 48 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 1 1 RestSharp Warning 49 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 2 1 RestSharp Warning 50 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 3 1 RestSharp Warning 56 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 1 1 RestSharp Warning 57 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 2 1 RestSharp Warning 58 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 3 1 RestSharp Warning 59 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 4 1 RestSharp Warning 60 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 5 1 RestSharp Warning 61 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 6 1 RestSharp Warning 90 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 1 1 RestSharp Warning 97 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 1 1 RestSharp Warning 109 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs 1 1 RestSharp Warning 114 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs 1 1 RestSharp Warning 119 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs 1 1 RestSharp Warning 125 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs 1 1 RestSharp Warning 130 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 1 1 RestSharp Warning 131 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 2 1 RestSharp Warning 132 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 3 1 RestSharp Warning 133 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 4 1 RestSharp Warning 134 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 5 1 RestSharp Warning 183 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 1 1 RestSharp Warning 190 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 1 1 RestSharp Warning 211 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 1 1 RestSharp Warning 212 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 2 1 RestSharp Warning 213 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 3 1 RestSharp Warning 214 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 5 1 RestSharp Warning 349 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 1 1 RestSharp Warning 350 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 2 1 RestSharp Warning 351 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 3 1 RestSharp Warning 352 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 4 1 RestSharp Warning 353 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 5 1 RestSharp Warning 445 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameter.cs 2 1 RestSharp Warning 446 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameter.cs 3 1 RestSharp Warning 451 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 1 1 RestSharp Warning 452 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 2 1 RestSharp Warning 466 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 17 1 RestSharp Warning 467 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 18 1 RestSharp Warning 468 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 19 1 RestSharp Warning 469 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 20 1 RestSharp Warning 470 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 21 1 RestSharp Warning 471 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 28 1 RestSharp Warning 546 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 17 1 RestSharp Warning 547 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 18 1 RestSharp Warning 598 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DeserializeAsAttribute.cs 17 1 RestSharp Warning 603 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 17 1 RestSharp Warning 604 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 18 1 RestSharp Warning 620 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 1 1 RestSharp Warning 621 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 2 1 RestSharp Warning 622 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 3 1 RestSharp Warning 623 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 4 1 RestSharp Warning 624 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 5 1 RestSharp Warning 625 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 6 1 RestSharp Warning 691 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 17 1 RestSharp Warning 692 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 18 1 RestSharp Warning 693 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 19 1 RestSharp Warning 698 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 17 1 RestSharp Warning 699 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 18 1 RestSharp Warning 700 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 19 1 RestSharp Warning 701 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 20 1 RestSharp Warning 702 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 21 1 RestSharp Warning 703 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 22 1 RestSharp Warning 704 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 23 1 RestSharp Warning 705 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 24 1 RestSharp Warning 706 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 25 1 RestSharp Warning 707 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 26 1 RestSharp Warning 809 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 17 1 RestSharp Warning 810 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 18 1 RestSharp Warning 820 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 29 1 RestSharp Warning 830 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 33 1 RestSharp Warning 831 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 34 1 RestSharp Warning 832 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 35 1 RestSharp Warning 833 SA1200 : CSharp.Ordering : All using directives must be placed inside of the namespace. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 36 1 RestSharp Warning 151 SA1201 : CSharp.Ordering : All constructors must be placed after all fields. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 42 1 RestSharp Warning 152 SA1201 : CSharp.Ordering : All constructors must be placed after all fields. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 91 1 RestSharp Warning 153 SA1201 : CSharp.Ordering : All constructors must be placed after all fields. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 93 1 RestSharp Warning 360 SA1201 : CSharp.Ordering : All indexers must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 28 1 RestSharp Warning 361 SA1201 : CSharp.Ordering : All indexers must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 34 1 RestSharp Warning 362 SA1201 : CSharp.Ordering : All indexers must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 55 1 RestSharp Warning 363 SA1201 : CSharp.Ordering : All indexers must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 70 1 RestSharp Warning 364 SA1201 : CSharp.Ordering : All indexers must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 75 1 RestSharp Warning 358 SA1201 : CSharp.Ordering : All indexers must be placed after all properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 18 1 RestSharp Warning 359 SA1201 : CSharp.Ordering : All indexers must be placed after all properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 23 1 RestSharp Warning 365 SA1201 : CSharp.Ordering : All indexers must be placed after all properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 163 1 RestSharp Warning 366 SA1201 : CSharp.Ordering : All indexers must be placed after all properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 168 1 RestSharp Warning 64 SA1201 : CSharp.Ordering : All methods must be placed after all fields. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 98 1 RestSharp Warning 376 SA1201 : CSharp.Ordering : All methods must be placed after all indexers. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 188 1 RestSharp Warning 612 SA1201 : CSharp.Ordering : All methods must be placed after all properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 21 1 RestSharp Warning 628 SA1201 : CSharp.Ordering : All properties must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 22 1 RestSharp Warning 710 SA1201 : CSharp.Ordering : All properties must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 40 1 RestSharp Warning 850 SA1201 : CSharp.Ordering : All properties must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 109 1 RestSharp Warning 851 SA1201 : CSharp.Ordering : All properties must be placed after all constructors. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 120 1 RestSharp Warning 802 SA1201 : CSharp.Ordering : All structs must be placed after all enums. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 75 1 RestSharp Warning 869 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 226 1 RestSharp Warning 870 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 243 1 RestSharp Warning 871 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 268 1 RestSharp Warning 872 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 351 1 RestSharp Warning 873 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 416 1 RestSharp Warning 874 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 605 1 RestSharp Warning 875 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 614 1 RestSharp Warning 876 SA1202 : CSharp.Ordering : All private methods must be placed after all internal methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 675 1 RestSharp Warning 726 SA1202 : CSharp.Ordering : All private methods must be placed after all protected methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 103 1 RestSharp Warning 728 SA1202 : CSharp.Ordering : All private methods must be placed after all protected methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 381 1 RestSharp Warning 729 SA1202 : CSharp.Ordering : All private methods must be placed after all protected methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 402 1 RestSharp Warning 730 SA1202 : CSharp.Ordering : All private methods must be placed after all protected methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 431 1 RestSharp Warning 731 SA1202 : CSharp.Ordering : All private methods must be placed after all protected methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 465 1 RestSharp Warning 379 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 61 1 RestSharp Warning 380 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 89 1 RestSharp Warning 381 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 94 1 RestSharp Warning 382 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 99 1 RestSharp Warning 383 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 106 1 RestSharp Warning 384 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 120 1 RestSharp Warning 385 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 128 1 RestSharp Warning 386 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 133 1 RestSharp Warning 387 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 138 1 RestSharp Warning 388 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 143 1 RestSharp Warning 389 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 148 1 RestSharp Warning 390 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 153 1 RestSharp Warning 391 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 158 1 RestSharp Warning 392 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 173 1 RestSharp Warning 393 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 178 1 RestSharp Warning 394 SA1202 : CSharp.Ordering : All private methods must be placed after all public methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 183 1 RestSharp Warning 848 SA1202 : CSharp.Ordering : All private properties must be placed after all public properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 77 1 RestSharp Warning 849 SA1202 : CSharp.Ordering : All private properties must be placed after all public properties. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 97 1 RestSharp Warning 727 SA1204 : CSharp.Ordering : All static private methods must be placed before all non-static private methods. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 300 1 RestSharp Warning 158 SA1303 : CSharp.Naming : Constants must start with an upper-case letter: chars. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 51 1 RestSharp Warning 7 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 25 1 RestSharp Warning 142 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 20 1 RestSharp Warning 145 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 21 1 RestSharp Warning 148 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 24 1 RestSharp Warning 154 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 42 1 RestSharp Warning 356 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 11 1 RestSharp Warning 551 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 38 1 RestSharp Warning 563 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 96 1 RestSharp Warning 571 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 21 1 RestSharp Warning 573 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 22 1 RestSharp Warning 575 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 23 1 RestSharp Warning 577 SA1309 : CSharp.Naming : Field names must not start with an underscore. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 24 1 RestSharp Warning 155 SA1311 : CSharp.Naming : Static readonly fields must start with an upper-case letter: _encoding. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 42 1 RestSharp Warning 143 SA1311 : CSharp.Naming : Static readonly fields must start with an upper-case letter: _random. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 20 1 RestSharp Warning 146 SA1311 : CSharp.Naming : Static readonly fields must start with an upper-case letter: _randomLock. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 21 1 RestSharp Warning 149 SA1311 : CSharp.Naming : Static readonly fields must start with an upper-case letter: _rng. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 24 1 RestSharp Warning 822 SA1400 : CSharp.Maintainability : The class must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 33 1 RestSharp Warning 835 SA1400 : CSharp.Maintainability : The class must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 46 1 RestSharp Warning 837 SA1400 : CSharp.Maintainability : The field must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 48 1 RestSharp Warning 839 SA1400 : CSharp.Maintainability : The field must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 49 1 RestSharp Warning 841 SA1400 : CSharp.Maintainability : The field must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 53 1 RestSharp Warning 843 SA1400 : CSharp.Maintainability : The field must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 59 1 RestSharp Warning 845 SA1400 : CSharp.Maintainability : The field must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 61 1 RestSharp Warning 868 SA1400 : CSharp.Maintainability : The method must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 140 1 RestSharp Warning 880 SA1400 : CSharp.Maintainability : The method must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 148 1 RestSharp Warning 925 SA1400 : CSharp.Maintainability : The method must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 702 1 RestSharp Warning 847 SA1400 : CSharp.Maintainability : The property must have an access modifier. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 63 1 RestSharp Warning 557 SA1402 : CSharp.Maintainability : A C# document may only contain a single class at the root level unless all of the classes are partial and are of the same type. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 68 1 RestSharp Warning 910 SA1407 : CSharp.Maintainability : Insert parenthesis within the arithmetic expression to declare the operator precedence. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 557 1 RestSharp Warning 911 SA1407 : CSharp.Maintainability : Insert parenthesis within the arithmetic expression to declare the operator precedence. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 565 1 RestSharp Warning 20 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 35 1 RestSharp Warning 24 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 43 1 RestSharp Warning 100 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 7 1 RestSharp Warning 449 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameter.cs 17 1 RestSharp Warning 455 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 9 1 RestSharp Warning 457 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 13 1 RestSharp Warning 459 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 16 1 RestSharp Warning 461 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 19 1 RestSharp Warning 463 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 22 1 RestSharp Warning 558 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 77 1 RestSharp Warning 564 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 105 1 RestSharp Warning 857 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 120 1 RestSharp Warning 933 SA1502 : CSharp.Layout : The constructor must not be placed on a single line. The opening and closing curly brackets must each be placed on their own line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 74 1 RestSharp Warning 650 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 107 1 RestSharp Warning 860 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 132 1 RestSharp Warning 862 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 137 1 RestSharp Warning 867 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 145 1 RestSharp Warning 918 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 663 1 RestSharp Warning 919 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 672 1 RestSharp Warning 923 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 699 1 RestSharp Warning 940 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 132 1 RestSharp Warning 945 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 167 1 RestSharp Warning 947 SA1503 : CSharp.Layout : The body of the else statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 185 1 RestSharp Warning 884 SA1503 : CSharp.Layout : The body of the for statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 237 1 RestSharp Warning 891 SA1503 : CSharp.Layout : The body of the for statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 263 1 RestSharp Warning 902 SA1503 : CSharp.Layout : The body of the for statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 388 1 RestSharp Warning 939 SA1503 : CSharp.Layout : The body of the foreach statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 129 1 RestSharp Warning 27 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 52 1 RestSharp Warning 85 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 83 1 RestSharp Warning 535 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 191 1 RestSharp Warning 648 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 102 1 RestSharp Warning 649 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 105 1 RestSharp Warning 651 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 111 1 RestSharp Warning 664 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 201 1 RestSharp Warning 665 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 266 1 RestSharp Warning 666 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 269 1 RestSharp Warning 717 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 48 1 RestSharp Warning 733 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 114 1 RestSharp Warning 812 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 75 1 RestSharp Warning 814 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 90 1 RestSharp Warning 852 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 70 1 RestSharp Warning 859 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 130 1 RestSharp Warning 861 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 135 1 RestSharp Warning 866 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 143 1 RestSharp Warning 878 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 158 1 RestSharp Warning 879 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 162 1 RestSharp Warning 883 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 231 1 RestSharp Warning 887 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 246 1 RestSharp Warning 888 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 251 1 RestSharp Warning 889 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 254 1 RestSharp Warning 890 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 257 1 RestSharp Warning 893 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 271 1 RestSharp Warning 894 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 274 1 RestSharp Warning 895 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 293 1 RestSharp Warning 899 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 359 1 RestSharp Warning 900 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 362 1 RestSharp Warning 901 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 382 1 RestSharp Warning 906 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 419 1 RestSharp Warning 907 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 422 1 RestSharp Warning 908 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 425 1 RestSharp Warning 909 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 518 1 RestSharp Warning 930 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 55 1 RestSharp Warning 931 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 66 1 RestSharp Warning 942 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 138 1 RestSharp Warning 943 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 141 1 RestSharp Warning 944 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 144 1 RestSharp Warning 946 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 183 1 RestSharp Warning 949 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 196 1 RestSharp Warning 951 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 206 1 RestSharp Warning 952 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 209 1 RestSharp Warning 953 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 212 1 RestSharp Warning 955 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 227 1 RestSharp Warning 957 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 245 1 RestSharp Warning 958 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 250 1 RestSharp Warning 960 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 261 1 RestSharp Warning 961 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 264 1 RestSharp Warning 962 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 267 1 RestSharp Warning 963 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 270 1 RestSharp Warning 964 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 273 1 RestSharp Warning 966 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 341 1 RestSharp Warning 969 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 354 1 RestSharp Warning 970 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 357 1 RestSharp Warning 972 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 365 1 RestSharp Warning 973 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 368 1 RestSharp Warning 974 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 373 1 RestSharp Warning 975 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 376 1 RestSharp Warning 978 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 414 1 RestSharp Warning 979 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 417 1 RestSharp Warning 980 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 429 1 RestSharp Warning 981 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 437 1 RestSharp Warning 983 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 450 1 RestSharp Warning 984 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 453 1 RestSharp Warning 986 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 463 1 RestSharp Warning 987 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 466 1 RestSharp Warning 990 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 481 1 RestSharp Warning 991 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 484 1 RestSharp Warning 993 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 494 1 RestSharp Warning 994 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 497 1 RestSharp Warning 996 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 505 1 RestSharp Warning 998 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 517 1 RestSharp Warning 1000 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 527 1 RestSharp Warning 1001 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 530 1 RestSharp Warning 1006 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 746 1 RestSharp Warning 1007 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 749 1 RestSharp Warning 1008 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 752 1 RestSharp Warning 1009 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 755 1 RestSharp Warning 1011 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 767 1 RestSharp Warning 1012 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 796 1 RestSharp Warning 1013 SA1503 : CSharp.Layout : The body of the if statement must be wrapped in opening and closing curly brackets. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 827 1 RestSharp Warning 44 SA1513 : CSharp.Layout : Statements or elements wrapped in curly brackets must be followed by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 79 1 RestSharp Warning 45 SA1513 : CSharp.Layout : Statements or elements wrapped in curly brackets must be followed by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 81 1 RestSharp Warning 82 SA1513 : CSharp.Layout : Statements or elements wrapped in curly brackets must be followed by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 76 1 RestSharp Warning 536 SA1513 : CSharp.Layout : Statements or elements wrapped in curly brackets must be followed by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 275 1 RestSharp Warning 734 SA1513 : CSharp.Layout : Statements or elements wrapped in curly brackets must be followed by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 147 1 RestSharp Warning 614 SA1516 : CSharp.Layout : Adjacent elements must be separated by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 22 1 RestSharp Warning 616 SA1516 : CSharp.Layout : Adjacent elements must be separated by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 23 1 RestSharp Warning 618 SA1516 : CSharp.Layout : Adjacent elements must be separated by a blank line. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 24 1 RestSharp Warning 5 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 23 1 RestSharp Warning 35 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 8 1 RestSharp Warning 51 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 7 1 RestSharp Warning 62 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 10 1 RestSharp Warning 91 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 5 1 RestSharp Warning 98 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 5 1 RestSharp Warning 135 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 12 1 RestSharp Warning 191 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 8 1 RestSharp Warning 342 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 3 1 RestSharp Warning 354 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 9 1 RestSharp Warning 447 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameter.cs 14 1 RestSharp Warning 453 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 6 1 RestSharp Warning 569 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 19 1 RestSharp Warning 626 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 12 1 RestSharp Warning 694 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 23 1 RestSharp Warning 708 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 30 1 RestSharp Warning 821 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 33 1 RestSharp Warning 834 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 46 1 RestSharp Warning 927 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 46 1 RestSharp Warning 928 SA1600 : CSharp.Documentation : The class must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 48 1 RestSharp Warning 8 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 27 1 RestSharp Warning 99 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 7 1 RestSharp Warning 150 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 27 1 RestSharp Warning 343 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 5 1 RestSharp Warning 371 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 28 1 RestSharp Warning 373 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 34 1 RestSharp Warning 396 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 55 1 RestSharp Warning 400 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 70 1 RestSharp Warning 402 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 75 1 RestSharp Warning 448 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameter.cs 16 1 RestSharp Warning 454 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 8 1 RestSharp Warning 456 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 12 1 RestSharp Warning 458 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 16 1 RestSharp Warning 460 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 18 1 RestSharp Warning 462 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 21 1 RestSharp Warning 578 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 26 1 RestSharp Warning 632 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 22 1 RestSharp Warning 714 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 40 1 RestSharp Warning 855 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 109 1 RestSharp Warning 856 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 120 1 RestSharp Warning 932 SA1600 : CSharp.Documentation : The constructor must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 74 1 RestSharp Warning 110 SA1600 : CSharp.Documentation : The enum must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs 8 1 RestSharp Warning 115 SA1600 : CSharp.Documentation : The enum must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs 8 1 RestSharp Warning 120 SA1600 : CSharp.Documentation : The enum must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs 8 1 RestSharp Warning 126 SA1600 : CSharp.Documentation : The enum must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs 8 1 RestSharp Warning 184 SA1600 : CSharp.Documentation : The enum must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 8 1 RestSharp Warning 6 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 25 1 RestSharp Warning 18 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 29 1 RestSharp Warning 88 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 98 1 RestSharp Warning 136 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 14 1 RestSharp Warning 137 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 15 1 RestSharp Warning 138 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 16 1 RestSharp Warning 139 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 17 1 RestSharp Warning 140 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 18 1 RestSharp Warning 141 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 20 1 RestSharp Warning 144 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 21 1 RestSharp Warning 147 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 24 1 RestSharp Warning 161 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 93 1 RestSharp Warning 355 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 11 1 RestSharp Warning 570 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 21 1 RestSharp Warning 572 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 22 1 RestSharp Warning 574 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 23 1 RestSharp Warning 576 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 24 1 RestSharp Warning 823 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 35 1 RestSharp Warning 836 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 48 1 RestSharp Warning 838 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 49 1 RestSharp Warning 840 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 53 1 RestSharp Warning 842 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 59 1 RestSharp Warning 844 SA1600 : CSharp.Documentation : The field must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 61 1 RestSharp Warning 357 SA1600 : CSharp.Documentation : The indexer must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 13 1 RestSharp Warning 441 SA1600 : CSharp.Documentation : The indexer must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 188 1 RestSharp Warning 13 SA1600 : CSharp.Documentation : The interface must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\IAuthenticator.cs 19 1 RestSharp Warning 610 SA1600 : CSharp.Documentation : The interface must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 19 1 RestSharp Warning 10 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 33 1 RestSharp Warning 14 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\IAuthenticator.cs 21 1 RestSharp Warning 28 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 57 1 RestSharp Warning 36 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 10 1 RestSharp Warning 37 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 15 1 RestSharp Warning 38 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 20 1 RestSharp Warning 39 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 30 1 RestSharp Warning 40 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 35 1 RestSharp Warning 41 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 44 1 RestSharp Warning 42 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 54 1 RestSharp Warning 43 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 62 1 RestSharp Warning 46 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 87 1 RestSharp Warning 52 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 9 1 RestSharp Warning 53 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 16 1 RestSharp Warning 54 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 29 1 RestSharp Warning 63 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 12 1 RestSharp Warning 67 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 18 1 RestSharp Warning 69 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 23 1 RestSharp Warning 70 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 28 1 RestSharp Warning 72 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 33 1 RestSharp Warning 74 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 38 1 RestSharp Warning 76 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 43 1 RestSharp Warning 77 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 49 1 RestSharp Warning 78 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 54 1 RestSharp Warning 79 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 59 1 RestSharp Warning 80 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 64 1 RestSharp Warning 81 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 69 1 RestSharp Warning 84 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 80 1 RestSharp Warning 92 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 7 1 RestSharp Warning 93 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 12 1 RestSharp Warning 94 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 20 1 RestSharp Warning 106 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 19 1 RestSharp Warning 107 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 31 1 RestSharp Warning 289 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 215 1 RestSharp Warning 305 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 283 1 RestSharp Warning 309 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 301 1 RestSharp Warning 314 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 324 1 RestSharp Warning 320 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 347 1 RestSharp Warning 323 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 360 1 RestSharp Warning 335 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 397 1 RestSharp Warning 375 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 40 1 RestSharp Warning 378 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 45 1 RestSharp Warning 398 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 61 1 RestSharp Warning 404 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 80 1 RestSharp Warning 406 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 89 1 RestSharp Warning 408 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 94 1 RestSharp Warning 410 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 99 1 RestSharp Warning 413 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 106 1 RestSharp Warning 415 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 120 1 RestSharp Warning 417 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 128 1 RestSharp Warning 419 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 133 1 RestSharp Warning 421 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 138 1 RestSharp Warning 423 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 143 1 RestSharp Warning 425 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 148 1 RestSharp Warning 427 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 153 1 RestSharp Warning 429 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 158 1 RestSharp Warning 435 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 173 1 RestSharp Warning 437 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 178 1 RestSharp Warning 439 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 183 1 RestSharp Warning 464 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 24 1 RestSharp Warning 488 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 66 1 RestSharp Warning 489 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 80 1 RestSharp Warning 490 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 87 1 RestSharp Warning 494 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 104 1 RestSharp Warning 499 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 112 1 RestSharp Warning 504 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 120 1 RestSharp Warning 509 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 129 1 RestSharp Warning 514 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 146 1 RestSharp Warning 519 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 163 1 RestSharp Warning 534 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 185 1 RestSharp Warning 540 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 283 1 RestSharp Warning 554 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 59 1 RestSharp Warning 559 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 79 1 RestSharp Warning 566 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 123 1 RestSharp Warning 583 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 34 1 RestSharp Warning 608 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 33 1 RestSharp Warning 611 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 21 1 RestSharp Warning 634 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 27 1 RestSharp Warning 643 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 60 1 RestSharp Warning 647 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 72 1 RestSharp Warning 654 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 117 1 RestSharp Warning 659 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 146 1 RestSharp Warning 663 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 192 1 RestSharp Warning 688 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 332 1 RestSharp Warning 695 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 25 1 RestSharp Warning 716 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 45 1 RestSharp Warning 725 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 79 1 RestSharp Warning 732 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 103 1 RestSharp Warning 758 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 300 1 RestSharp Warning 760 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 319 1 RestSharp Warning 763 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 329 1 RestSharp Warning 772 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 381 1 RestSharp Warning 776 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 402 1 RestSharp Warning 779 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 431 1 RestSharp Warning 781 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 465 1 RestSharp Warning 858 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 125 1 RestSharp Warning 865 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 140 1 RestSharp Warning 877 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 148 1 RestSharp Warning 882 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 226 1 RestSharp Warning 886 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 243 1 RestSharp Warning 892 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 268 1 RestSharp Warning 898 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 351 1 RestSharp Warning 905 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 416 1 RestSharp Warning 914 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 605 1 RestSharp Warning 917 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 614 1 RestSharp Warning 922 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 675 1 RestSharp Warning 924 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 702 1 RestSharp Warning 929 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 50 1 RestSharp Warning 934 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 80 1 RestSharp Warning 935 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 98 1 RestSharp Warning 936 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 114 1 RestSharp Warning 937 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 119 1 RestSharp Warning 938 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 124 1 RestSharp Warning 941 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 135 1 RestSharp Warning 948 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 193 1 RestSharp Warning 950 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 201 1 RestSharp Warning 954 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 217 1 RestSharp Warning 956 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 235 1 RestSharp Warning 959 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 258 1 RestSharp Warning 965 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 338 1 RestSharp Warning 967 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 346 1 RestSharp Warning 968 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 351 1 RestSharp Warning 971 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 362 1 RestSharp Warning 976 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 406 1 RestSharp Warning 977 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 411 1 RestSharp Warning 982 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 447 1 RestSharp Warning 985 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 460 1 RestSharp Warning 988 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 473 1 RestSharp Warning 989 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 478 1 RestSharp Warning 992 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 491 1 RestSharp Warning 995 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 502 1 RestSharp Warning 997 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 514 1 RestSharp Warning 999 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 524 1 RestSharp Warning 1002 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 589 1 RestSharp Warning 1003 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 729 1 RestSharp Warning 1004 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 738 1 RestSharp Warning 1005 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 743 1 RestSharp Warning 1010 SA1600 : CSharp.Documentation : The method must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 764 1 RestSharp Warning 101 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 9 1 RestSharp Warning 102 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 11 1 RestSharp Warning 103 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 13 1 RestSharp Warning 104 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 15 1 RestSharp Warning 105 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 17 1 RestSharp Warning 192 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 10 1 RestSharp Warning 193 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 12 1 RestSharp Warning 194 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 14 1 RestSharp Warning 195 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 16 1 RestSharp Warning 196 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 18 1 RestSharp Warning 197 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 20 1 RestSharp Warning 198 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 22 1 RestSharp Warning 199 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 24 1 RestSharp Warning 200 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 26 1 RestSharp Warning 201 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 28 1 RestSharp Warning 202 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 30 1 RestSharp Warning 203 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 32 1 RestSharp Warning 204 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 34 1 RestSharp Warning 205 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 36 1 RestSharp Warning 206 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 38 1 RestSharp Warning 207 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 40 1 RestSharp Warning 208 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 42 1 RestSharp Warning 209 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 44 1 RestSharp Warning 216 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 16 1 RestSharp Warning 217 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 18 1 RestSharp Warning 218 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 20 1 RestSharp Warning 219 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 22 1 RestSharp Warning 220 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 24 1 RestSharp Warning 221 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 26 1 RestSharp Warning 222 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 28 1 RestSharp Warning 223 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 30 1 RestSharp Warning 224 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 32 1 RestSharp Warning 225 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 34 1 RestSharp Warning 226 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 36 1 RestSharp Warning 227 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 38 1 RestSharp Warning 228 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 40 1 RestSharp Warning 346 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 11 1 RestSharp Warning 347 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 13 1 RestSharp Warning 367 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 18 1 RestSharp Warning 369 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 23 1 RestSharp Warning 431 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 163 1 RestSharp Warning 433 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 168 1 RestSharp Warning 473 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 36 1 RestSharp Warning 474 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 38 1 RestSharp Warning 475 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 40 1 RestSharp Warning 476 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 42 1 RestSharp Warning 477 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 44 1 RestSharp Warning 478 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 46 1 RestSharp Warning 479 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 48 1 RestSharp Warning 480 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 50 1 RestSharp Warning 481 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 52 1 RestSharp Warning 482 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 54 1 RestSharp Warning 483 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 56 1 RestSharp Warning 484 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 58 1 RestSharp Warning 485 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 60 1 RestSharp Warning 486 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 62 1 RestSharp Warning 487 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 64 1 RestSharp Warning 605 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 27 1 RestSharp Warning 606 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 29 1 RestSharp Warning 607 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 31 1 RestSharp Warning 613 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 22 1 RestSharp Warning 615 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 23 1 RestSharp Warning 617 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 24 1 RestSharp Warning 627 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 14 1 RestSharp Warning 629 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 16 1 RestSharp Warning 630 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 18 1 RestSharp Warning 631 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 20 1 RestSharp Warning 709 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 32 1 RestSharp Warning 711 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 34 1 RestSharp Warning 712 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 36 1 RestSharp Warning 713 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 38 1 RestSharp Warning 846 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 63 1 RestSharp Warning 853 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 77 1 RestSharp Warning 854 SA1600 : CSharp.Documentation : The property must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 97 1 RestSharp Warning 111 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs 10 1 RestSharp Warning 112 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs 11 1 RestSharp Warning 116 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs 10 1 RestSharp Warning 117 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs 11 1 RestSharp Warning 121 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs 10 1 RestSharp Warning 122 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs 11 1 RestSharp Warning 123 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs 12 1 RestSharp Warning 127 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs 10 1 RestSharp Warning 128 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs 11 1 RestSharp Warning 185 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 10 1 RestSharp Warning 186 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 11 1 RestSharp Warning 187 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 12 1 RestSharp Warning 188 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 13 1 RestSharp Warning 786 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 24 1 RestSharp Warning 787 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 25 1 RestSharp Warning 788 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 26 1 RestSharp Warning 789 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 27 1 RestSharp Warning 790 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 28 1 RestSharp Warning 791 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 29 1 RestSharp Warning 792 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 37 1 RestSharp Warning 793 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 38 1 RestSharp Warning 794 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 46 1 RestSharp Warning 795 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 47 1 RestSharp Warning 796 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 48 1 RestSharp Warning 797 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 49 1 RestSharp Warning 798 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 50 1 RestSharp Warning 799 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 51 1 RestSharp Warning 800 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 52 1 RestSharp Warning 801 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 53 1 RestSharp Warning 803 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 77 1 RestSharp Warning 804 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 78 1 RestSharp Warning 805 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 79 1 RestSharp Warning 806 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 80 1 RestSharp Warning 807 SA1602 : CSharp.Documentation : The enumeration sub-item must have a documentation header. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 81 1 RestSharp Warning 229 SA1604 : CSharp.Documentation : The documentation header must have a summary tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 43 1 RestSharp Warning 230 SA1604 : CSharp.Documentation : The documentation header must have a summary tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 46 1 RestSharp Warning 231 SA1604 : CSharp.Documentation : The documentation header must have a summary tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 49 1 RestSharp Warning 472 SA1604 : CSharp.Documentation : The documentation header must have a summary tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 34 1 RestSharp Warning 25 SA1614 : CSharp.Documentation : The documentation text within the param tag for the '' parameter must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 49 1 RestSharp Warning 169 SA1614 : CSharp.Documentation : The documentation text within the param tag for the '' parameter must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 162 1 RestSharp Warning 22 SA1614 : CSharp.Documentation : The documentation text within the param tag for the '' parameter must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 42 1 RestSharp Warning 21 SA1614 : CSharp.Documentation : The documentation text within the param tag for the '' parameter must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 42 1 RestSharp Warning 164 SA1614 : CSharp.Documentation : The documentation text within the param tag for the '' parameter must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 136 1 RestSharp Warning 165 SA1615 : CSharp.Documentation : The documentation header must contain a returns tag since the element has a return value. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 136 1 RestSharp Warning 251 SA1615 : CSharp.Documentation : The documentation header must contain a returns tag since the element has a return value. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 116 1 RestSharp Warning 254 SA1615 : CSharp.Documentation : The documentation header must contain a returns tag since the element has a return value. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 129 1 RestSharp Warning 273 SA1615 : CSharp.Documentation : The documentation header must contain a returns tag since the element has a return value. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 176 1 RestSharp Warning 156 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 49 1 RestSharp Warning 159 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 70 1 RestSharp Warning 160 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 81 1 RestSharp Warning 170 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 162 1 RestSharp Warning 172 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 197 1 RestSharp Warning 176 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 253 1 RestSharp Warning 177 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 268 1 RestSharp Warning 178 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 282 1 RestSharp Warning 179 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 297 1 RestSharp Warning 232 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 59 1 RestSharp Warning 235 SA1616 : CSharp.Documentation : The returns section in the documentation header must not be empty. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 73 1 RestSharp Warning 600 SA1623 : CSharp.Documentation : The property's documentation summary text must begin with: Gets or sets C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DeserializeAsAttribute.cs 30 1 RestSharp Warning 601 SA1623 : CSharp.Documentation : The property's documentation summary text must begin with: Gets or sets a value indicating whether C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DeserializeAsAttribute.cs 35 1 RestSharp Warning 811 SA1630 : CSharp.Documentation : The documentation text within the return tag does not contain any whitespace between words, indicating that it most likely does not follow a proper grammatical structure required for documentation text. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 44 1 RestSharp Warning 30 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs 1 1 RestSharp Warning 47 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs 1 1 RestSharp Warning 55 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs 1 1 RestSharp Warning 89 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs 1 1 RestSharp Warning 96 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameter.cs 1 1 RestSharp Warning 108 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs 1 1 RestSharp Warning 113 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs 1 1 RestSharp Warning 118 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs 1 1 RestSharp Warning 124 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs 1 1 RestSharp Warning 129 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 1 1 RestSharp Warning 182 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthType.cs 1 1 RestSharp Warning 189 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs 1 1 RestSharp Warning 210 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 1 1 RestSharp Warning 341 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPair.cs 1 1 RestSharp Warning 348 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebPairCollection.cs 1 1 RestSharp Warning 444 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameter.cs 1 1 RestSharp Warning 450 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\WebParameterCollection.cs 1 1 RestSharp Warning 588 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\Crc32.cs 1 1 RestSharp Warning 589 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\FlushType.cs 1 1 RestSharp Warning 590 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\GZipStream.cs 1 1 RestSharp Warning 591 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\Inflate.cs 1 1 RestSharp Warning 592 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\InfTree.cs 1 1 RestSharp Warning 593 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\ZLib.cs 1 1 RestSharp Warning 594 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\ZLibCodec.cs 1 1 RestSharp Warning 595 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\ZLibConstants.cs 1 1 RestSharp Warning 596 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Compression\ZLib\ZLibStream.cs 1 1 RestSharp Warning 619 SA1633 : CSharp.Documentation : The file has no header, the header Xml is invalid, or the header is not located at the top of the file. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\JsonDeserializer.cs 1 1 RestSharp Warning 1 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\HttpBasicAuthenticator.cs 2 1 RestSharp Warning 12 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\IAuthenticator.cs 2 1 RestSharp Warning 15 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 2 1 RestSharp Warning 465 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth1Authenticator.cs 2 1 RestSharp Warning 545 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 2 1 RestSharp Warning 568 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\SimpleAuthenticator.cs 2 1 RestSharp Warning 597 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DeserializeAsAttribute.cs 2 1 RestSharp Warning 602 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DotNetXmlDeserializer.cs 2 1 RestSharp Warning 609 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\IDeserializer.cs 2 1 RestSharp Warning 690 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlAttributeDeserializer.cs 2 1 RestSharp Warning 697 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\XmlDeserializer.cs 2 1 RestSharp Warning 783 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Enum.cs 2 1 RestSharp Warning 808 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 2 1 RestSharp Warning 816 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\Helpers.cs 1 1 RestSharp Warning 824 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HtmlEncoder.cs 1 1 RestSharp Warning 926 SA1634 : CSharp.Documentation : The file header must contain a copyright tag. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MonoHttp\HttpUtility.cs 1 1 RestSharp Warning 19 SA1642 : CSharp.Documentation : The documentation text within the constructor's summary tag must begin with the text: Initializes a new instance of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 34 1 RestSharp
Warning 23 SA1642 : CSharp.Documentation : The documentation text within the constructor's summary tag must begin with the text: Initializes a new instance of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 42 1 RestSharp
Warning 26 SA1642 : CSharp.Documentation : The documentation text within the constructor's summary tag must begin with the text: Initializes a new instance of the class. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\NtlmAuthenticator.cs 49 1 RestSharp
Warning 548 SA1644 : CSharp.Documentation : The documentation header must not contain blank lines. Use the 'para' tag to insert line breaks within documentation text. C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 29 1 RestSharp
Warning 234 SA1650 : CSharp.Documentation : The documentation text within the param tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 73 1 RestSharp
Warning 253 SA1650 : CSharp.Documentation : The documentation text within the param tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 129 1 RestSharp
Warning 272 SA1650 : CSharp.Documentation : The documentation text within the param tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 176 1 RestSharp
Warning 550 SA1650 : CSharp.Documentation : The documentation text within the remarks tag contains incorrectly spelled words: Auth, Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 33 1 RestSharp
Warning 556 SA1650 : CSharp.Documentation : The documentation text within the remarks tag contains incorrectly spelled words: draft-ietf-oauth-v C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 68 1 RestSharp
Warning 562 SA1650 : CSharp.Documentation : The documentation text within the remarks tag contains incorrectly spelled words: draft-ietf-oauth-v C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 91 1 RestSharp
Warning 162 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 110 1 RestSharp
Warning 163 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 136 1 RestSharp
Warning 171 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 197 1 RestSharp
Warning 215 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs 14 1 RestSharp
Warning 549 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 33 1 RestSharp
Warning 555 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 68 1 RestSharp
Warning 561 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Auth C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth2Authenticator.cs 91 1 RestSharp
Warning 175 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: concatentation C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Authenticators\OAuth\OAuthTools.cs 228 1 RestSharp
Warning 599 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: Deserializer C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Deserializers\DeserializeAsAttribute.cs 25 1 RestSharp
Warning 813 SA1650 : CSharp.Documentation : The documentation text within the summary tag contains incorrectly spelled words: shrinkrays, csharp, aspx C:\Users\wolfy\Documents\GitHub\RestSharpHighQualityCodeTeamProject\RestSharp\Extensions\MiscExtensions.cs 87 1 RestSharp