Returned IP range results for Get-MCASSubnetCollection are limited to 100 records. Increasing the functions parameter to a higher value (e.g 200) has no effect.
# Specifies the maximum number of results to retrieve when listing items matching the specified filter criteria.
[Parameter(ParameterSetName='List', Mandatory=$false)]
[ValidateRange(1,200)]
[int]$ResultSetSize = 200,
Example, 108 matching records, 100 returned.

javanite mentioned in issue #69 the use of a while loop using the skip parameter as a potential workaround. Is anyone able to confirm if this would work and perhaps provide an example?