1 type derived from StringCollection
System.Configuration.ConfigurationManager (1)
System\Configuration\StringAttributeCollection.cs (1)
9public sealed class CommaDelimitedStringCollection : StringCollection
24 instantiations of StringCollection
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerParameters.cs (3)
29private StringCollection _assemblyNames = new StringCollection(); 32private StringCollection _embeddedResources = new StringCollection(); 34private StringCollection _linkedResources = new StringCollection();
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerResults.cs (1)
27private StringCollection _output = new StringCollection();
FrameworkFork\Microsoft.CodeDom\System\CodeCompileUnit.cs (1)
73_assemblies = new StringCollection();
FrameworkFork\Microsoft.Xml\Xml\Serialization\Advanced\SchemaImporterExtension.cs (1)
187_references = new StringCollection();
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (1)
140_warnings = new StringCollection();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (2)
57private static StringCollection s_warnings = new StringCollection(); 214_validationWarnings = new StringCollection();
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (1)
61_schemaImporterExtensions = new StringCollection();
Microsoft.VisualBasic.Forms.Tests (1)
System\Windows\Forms\ClipboardProxyTests.vb (1)
64Dim filePaths As New StringCollection From {"filePath", "filePath2"}
PresentationCore (2)
System\Windows\clipboard.cs (1)
188fileDropListCollection = new StringCollection();
System\Windows\dataobject.cs (1)
397fileDropListCollection = new StringCollection();
System.CodeDom (5)
System\CodeDom\CodeCompileUnit.cs (1)
20public StringCollection ReferencedAssemblies => _assemblies ??= new StringCollection();
System\CodeDom\Compiler\CompilerParameters.cs (3)
56public StringCollection ReferencedAssemblies { get; } = new StringCollection(); 77public StringCollection EmbeddedResources { get; } = new StringCollection(); 79public StringCollection LinkedResources { get; } = new StringCollection();
System\CodeDom\Compiler\CompilerResults.cs (1)
34public StringCollection Output { get; } = new StringCollection();
System.Configuration.ConfigurationManager (2)
System\Configuration\ConfigurationElement.cs (1)
1374StringCollection intersectionCollection = new StringCollection();
System\Configuration\ConfigurationLockCollection.cs (1)
241StringCollection removeList = new StringCollection();
System.Private.Xml (1)
System\Xml\Serialization\ImportContext.cs (1)
65internal StringCollection Warnings => _warnings ??= new StringCollection();
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\StringCollectionConverter.cs (1)
72StringCollection stringCollection = new StringCollection();
System.Windows.Forms.Tests (2)
System\Windows\Forms\DataObjectTests.cs (2)
1603{ new StringCollection() }, 1604{ new StringCollection { "file", " ", string.Empty, null } }
107 references to StringCollection
dotnet-svcutil-lib (29)
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerParameters.cs (6)
29private StringCollection _assemblyNames = new StringCollection(); 32private StringCollection _embeddedResources = new StringCollection(); 34private StringCollection _linkedResources = new StringCollection(); 167public StringCollection ReferencedAssemblies 313public StringCollection EmbeddedResources 327public StringCollection LinkedResources
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerResults.cs (2)
27private StringCollection _output = new StringCollection(); 105public StringCollection Output
FrameworkFork\Microsoft.CodeDom\System\CodeCompileUnit.cs (2)
28private StringCollection _assemblies = null; 67public StringCollection ReferencedAssemblies
FrameworkFork\Microsoft.Xml\Xml\Serialization\Advanced\SchemaImporterExtension.cs (3)
165private StringCollection _references; 167internal MappedTypeDesc(string clrType, string name, string ns, XmlSchemaType xsdType, XmlSchemaObject context, SchemaImporterExtension extension, CodeNamespace code, StringCollection references) 182internal StringCollection ReferencedAssemblies
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
91public StringCollection Warnings 102private StringCollection _warnings; 135internal StringCollection Warnings
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (4)
56private StringCollection _validationWarnings; 57private static StringCollection s_warnings = new StringCollection(); 208public StringCollection ValidationWarnings 220internal void SetWarnings(StringCollection warnings)
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (9)
29private StringCollection _schemaImporterExtensions; 56public StringCollection SchemaImporterExtensions 248System.Collections.Specialized.StringCollection a = (System.Collections.Specialized.StringCollection)((System.Collections.Specialized.StringCollection)o.@SchemaImporterExtensions); 338System.Collections.Specialized.StringCollection a_1 = (System.Collections.Specialized.StringCollection)o.@SchemaImporterExtensions; 377System.Collections.Specialized.StringCollection a_1_0 = (System.Collections.Specialized.StringCollection)o.@SchemaImporterExtensions;
Microsoft.VisualBasic.Forms (4)
Microsoft\VisualBasic\MyServices\ClipboardProxy.vb (4)
123''' <returns>The list of file paths as a <see cref="StringCollection"/>.</returns> 124Public Function GetFileDropList() As StringCollection 191''' <param name="filePaths">The file drop list as a <see cref="StringCollection"/>.</param> 192Public Sub SetFileDropList(filePaths As StringCollection)
netstandard (1)
netstandard.cs (1)
167[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Specialized.StringCollection))]
PresentationCore (6)
System\Windows\clipboard.cs (3)
183public static StringCollection GetFileDropList() 185StringCollection fileDropListCollection; 277public static void SetFileDropList(StringCollection fileDropList)
System\Windows\dataobject.cs (3)
392public StringCollection GetFileDropList() 394StringCollection fileDropListCollection; 469public void SetFileDropList(StringCollection fileDropList)
PresentationFramework (1)
MS\Internal\Data\PropertyPathWorker.cs (1)
1823typeof(System.Collections.Specialized.StringCollection),
System (1)
src\libraries\shims\System\ref\System.cs (1)
156[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Specialized.StringCollection))]
System.CodeDom (6)
System\CodeDom\CodeCompileUnit.cs (2)
10private StringCollection _assemblies; 20public StringCollection ReferencedAssemblies => _assemblies ??= new StringCollection();
System\CodeDom\Compiler\CompilerParameters.cs (3)
56public StringCollection ReferencedAssemblies { get; } = new StringCollection(); 77public StringCollection EmbeddedResources { get; } = new StringCollection(); 79public StringCollection LinkedResources { get; } = new StringCollection();
System\CodeDom\Compiler\CompilerResults.cs (1)
34public StringCollection Output { get; } = new StringCollection();
System.Collections.Specialized (16)
System\Collections\Specialized\StringCollection.cs (16)
17/// <para>Represents the entry at the specified index of the <see cref='System.Collections.Specialized.StringCollection'/>.</para> 33/// <see cref='System.Collections.Specialized.StringCollection'/> .</para> 62/// <see cref='System.Collections.Specialized.StringCollection'/> .</para> 70/// <para>Copies the elements of a string array to the end of the <see cref='System.Collections.Specialized.StringCollection'/>.</para> 81/// <see cref='System.Collections.Specialized.StringCollection'/> .</para> 90/// <see cref='System.Collections.Specialized.StringCollection'/> contains a string with the specified 99/// <para>Copies the <see cref='System.Collections.Specialized.StringCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 109/// the <see cref='System.Collections.Specialized.StringCollection'/> .</para> 118/// the <see cref='System.Collections.Specialized.StringCollection'/> .</para> 126/// <para>Inserts a string into the <see cref='System.Collections.Specialized.StringCollection'/> at the specified 135/// <para>Gets a value indicating whether the <see cref='System.Collections.Specialized.StringCollection'/> is read-only.</para> 147/// <see cref='System.Collections.Specialized.StringCollection'/> 160/// <see cref='System.Collections.Specialized.StringCollection'/> .</para> 168/// <para>Removes the string at the specified index of the <see cref='System.Collections.Specialized.StringCollection'/>.</para> 176/// <para>Gets an object that can be used to synchronize access to the <see cref='System.Collections.Specialized.StringCollection'/>.</para> 239internal StringEnumerator(StringCollection mappings)
System.Configuration.ConfigurationManager (7)
System\Configuration\ConfigurationElement.cs (6)
278StringCollection intersectionCollection = IntersectLockCollections(_lockedAllExceptAttributesList, 323StringCollection intersectionCollection = IntersectLockCollections(_lockedAllExceptElementsList, 1365private StringCollection IntersectLockCollections(ConfigurationLockCollection collection1, 1374StringCollection intersectionCollection = new StringCollection(); 1612StringCollection intersectionCollection = IntersectLockCollections(_lockedAllExceptAttributesList, 1665StringCollection intersectionCollection = IntersectLockCollections(_lockedAllExceptElementsList,
System\Configuration\ConfigurationLockCollection.cs (1)
241StringCollection removeList = new StringCollection();
System.DirectoryServices (2)
artifacts\obj\System.DirectoryServices\Debug\net10.0\System.DirectoryServices.notsupported.cs (2)
230public System.Collections.Specialized.StringCollection PropertiesToLoad { get { throw new System.PlatformNotSupportedException(System.SR.DirectoryServices_PlatformNotSupported); } } 1378public System.Collections.Specialized.StringCollection ExcludedTopLevelNames { get { throw new System.PlatformNotSupportedException(System.SR.DirectoryServices_PlatformNotSupported); } }
System.DirectoryServices.Protocols (1)
artifacts\obj\System.DirectoryServices.Protocols\Debug\net10.0\System.DirectoryServices.Protocols.notsupported.cs (1)
579public System.Collections.Specialized.StringCollection Attributes { get { throw new System.PlatformNotSupportedException(System.SR.DirectoryServicesProtocols_PlatformNotSupported); } }
System.Management (3)
artifacts\obj\System.Management\Debug\net10.0\System.Management.notsupported.cs (3)
179public System.Collections.Specialized.StringCollection Derivation { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemManagement); } } 746public System.Collections.Specialized.StringCollection SelectedProperties { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemManagement); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemManagement); } } 775public System.Collections.Specialized.StringCollection GroupByPropertyList { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemManagement); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemManagement); } }
System.Private.Xml (3)
System\Xml\Serialization\ImportContext.cs (3)
45public StringCollection Warnings 56private StringCollection? _warnings; 65internal StringCollection Warnings => _warnings ??= new StringCollection();
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Controls\Ribbon\RibbonTab.cs (3)
80public StringCollection GroupSizeReductionOrder 82get { return (StringCollection)GetValue(GroupSizeReductionOrderProperty); } 92typeof(StringCollection),
Microsoft\Windows\Controls\Ribbon\StringCollectionConverter.cs (3)
72StringCollection stringCollection = new StringCollection(); 104StringCollection stringCollectionValue = value as StringCollection;
System.Windows.Forms (10)
System\Drawing\Design\UITypeEditor.cs (1)
49[typeof(StringCollection)] = $"System.Windows.Forms.Design.StringCollectionEditor, {AssemblyRef.SystemDesign}",
System\Windows\Forms\Controls\ImageList\ImageList.ImageCollection.cs (2)
33public StringCollection Keys 38StringCollection keysCollection = [];
System\Windows\Forms\ImageKeyConverter.cs (1)
162StringCollection imageKeys = imageList.Images.Keys;
System\Windows\Forms\OLE\Clipboard.cs (3)
343public static StringCollection GetFileDropList() 345StringCollection result = []; 483public static void SetFileDropList(StringCollection filePaths)
System\Windows\Forms\OLE\DataObject.cs (3)
247public virtual StringCollection GetFileDropList() 249StringCollection dropList = []; 275public virtual void SetFileDropList(StringCollection filePaths)
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\GroupedContextMenuStrip.cs (2)
11private StringCollection? _groupOrdering; 34public StringCollection GroupOrdering
System\Windows\Forms\Design\ImageCollectionCodeDomSerializer.cs (1)
55StringCollection imageKeys = imageList.Images.Keys;
System\Windows\Forms\Design\ImageListDesigner.OriginalImageCollection.cs (1)
120StringCollection imageKeys = _owner.ImageList.Images.Keys;
System.Windows.Forms.Tests (7)
System\Windows\Forms\ClipboardTests.cs (3)
131StringCollection result = Clipboard.GetFileDropList(); 402StringCollection filePaths = 432StringCollection filePaths =
System\Windows\Forms\DataObjectTests.cs (4)
1601public static TheoryData<StringCollection> SetFileDropList_TheoryData() => new() 1609public void DataObject_SetFileDropList_Invoke_GetReturnsExpected(StringCollection filePaths) 1633public void DataObject_SetFileDropList_InvokeMocked_CallsSetFileDropList(StringCollection filePaths) 1648public void DataObject_SetFileDropList_InvokeIDataObject_CallsSetData(StringCollection filePaths)