File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ internal async Task<IEnumerable<string>> UpdateUserScopesAsync(IEnumerable<strin
102102 return newMinimalScopes ;
103103 }
104104
105- public static MethodAndUrl GetMethodAndUrl ( string methodAndUrlString )
105+ internal static MethodAndUrl GetMethodAndUrl ( string methodAndUrlString )
106106 {
107107 ArgumentException . ThrowIfNullOrWhiteSpace ( methodAndUrlString ) ;
108108
@@ -114,13 +114,13 @@ public static MethodAndUrl GetMethodAndUrl(string methodAndUrlString)
114114 return new ( Method : info [ 0 ] , Url : info [ 1 ] ) ;
115115 }
116116
117- public static string GetTokenizedUrl ( string absoluteUrl )
117+ internal static string GetTokenizedUrl ( string absoluteUrl )
118118 {
119119 var sanitizedUrl = ProxyUtils . SanitizeUrl ( absoluteUrl ) ;
120120 return "/" + string . Concat ( new Uri ( sanitizedUrl ) . Segments . Skip ( 2 ) . Select ( Uri . UnescapeDataString ) ) ;
121121 }
122122
123- public static MethodAndUrl [ ] GetRequestsFromBatch ( string batchBody , string graphVersion , string graphHostName )
123+ internal static MethodAndUrl [ ] GetRequestsFromBatch ( string batchBody , string graphVersion , string graphHostName )
124124 {
125125 var requests = new List < MethodAndUrl > ( ) ;
126126
You can’t perform that action at this time.
0 commit comments