| File: System\Windows\Media\CapacityStreamGeometryContext.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // This class is used by the StreamGeometry class to generate an inlined, // flattened geometry stream. // namespace System.Windows.Media { /// <summary> /// CapacityStreamGeometryContext /// </summary> internal abstract class CapacityStreamGeometryContext : StreamGeometryContext { internal virtual void SetFigureCount(int figureCount) {} internal virtual void SetSegmentCount(int segmentCount) {} } }