File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/GraphODataTemplateWriter/Extensions Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ public static string[] GetLongDescriptionSegments(this OdcmObject odcmObject)
293293 return null ;
294294 }
295295
296- /// Returns the complete list of methods supported by this OdcmObject, including its overloads
296+ /// Returns a List containing the supplied method plus its overloads
297297 public static List < OdcmMethod > WithOverloads ( this OdcmMethod odcmMethod )
298298 {
299299 var methods = new List < OdcmMethod > ( ) ;
@@ -302,6 +302,7 @@ public static List<OdcmMethod> WithOverloads(this OdcmMethod odcmMethod)
302302 return methods ;
303303 }
304304
305+ /// Returns a List containing the supplied class' methods plus their overloads
305306 public static List < OdcmMethod > MethodsAndOverloads ( this OdcmClass odcmClass )
306307 {
307308 var allMethods = new List < OdcmMethod > ( ) ;
You can’t perform that action at this time.
0 commit comments