63 references to Attributes
mscorlib (63)
system\resources\resourcemanager.cs (3)
1570if (assemblyNode.Attributes.Count == 0) 1573DictionaryEntry de = (DictionaryEntry) assemblyNode.Attributes[0]; 1575if (!String.Equals(de.Key, "name") || String.IsNullOrEmpty(assemblyName) || assemblyNode.Attributes.Count > 1)
system\runtime\remoting\remotingconfigparser.cs (55)
445node.Attributes.Add(new DictionaryEntry("ref", "http client")); 446node.Attributes.Add(new DictionaryEntry("displayName", "http client (delay loaded)")); 447node.Attributes.Add(new DictionaryEntry("delayLoadAsClientChannel", "true")); 451node.Attributes.Add(new DictionaryEntry("ref", "tcp client")); 452node.Attributes.Add(new DictionaryEntry("displayName", "tcp client (delay loaded)")); 453node.Attributes.Add(new DictionaryEntry("delayLoadAsClientChannel", "true")); 457node.Attributes.Add(new DictionaryEntry("ref", "ipc client")); 458node.Attributes.Add(new DictionaryEntry("displayName", "ipc client (delay loaded)")); 459node.Attributes.Add(new DictionaryEntry("delayLoadAsClientChannel", "true")); 479node.Attributes.Add(new DictionaryEntry("id", "http")); 480node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Http.HttpChannel, " + AssemblyRef.SystemRuntimeRemoting)); 484node.Attributes.Add(new DictionaryEntry("id", "http client")); 485node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Http.HttpClientChannel, " + AssemblyRef.SystemRuntimeRemoting)); 489node.Attributes.Add(new DictionaryEntry("id", "http server")); 490node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Http.HttpServerChannel, " + AssemblyRef.SystemRuntimeRemoting)); 494node.Attributes.Add(new DictionaryEntry("id", "tcp")); 495node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Tcp.TcpChannel, " + AssemblyRef.SystemRuntimeRemoting)); 499node.Attributes.Add(new DictionaryEntry("id", "tcp client")); 500node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Tcp.TcpClientChannel, " + AssemblyRef.SystemRuntimeRemoting)); 504node.Attributes.Add(new DictionaryEntry("id", "tcp server")); 505node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Tcp.TcpServerChannel, " + AssemblyRef.SystemRuntimeRemoting)); 509node.Attributes.Add(new DictionaryEntry("id", "ipc")); 510node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Ipc.IpcChannel, " + AssemblyRef.SystemRuntimeRemoting)); 514node.Attributes.Add(new DictionaryEntry("id", "ipc client")); 515node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Ipc.IpcClientChannel, " + AssemblyRef.SystemRuntimeRemoting)); 519node.Attributes.Add(new DictionaryEntry("id", "ipc server")); 520node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.Ipc.IpcServerChannel, " + AssemblyRef.SystemRuntimeRemoting)); 543node.Attributes.Add(new DictionaryEntry("id", "soap")); 544node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider, " + AssemblyRef.SystemRuntimeRemoting)); 548node.Attributes.Add(new DictionaryEntry("id", "binary")); 549node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider, " + AssemblyRef.SystemRuntimeRemoting)); 556node.Attributes.Add(new DictionaryEntry("id", "soap")); 557node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider, " + AssemblyRef.SystemRuntimeRemoting)); 561node.Attributes.Add(new DictionaryEntry("id", "binary")); 562node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider, " + AssemblyRef.SystemRuntimeRemoting)); 566node.Attributes.Add(new DictionaryEntry("id", "wsdl")); 567node.Attributes.Add(new DictionaryEntry("type", "System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider, " + AssemblyRef.SystemRuntimeRemoting)); 593foreach (DictionaryEntry entry in rootNode.Attributes) 814foreach (DictionaryEntry entry in node.Attributes) 833foreach (DictionaryEntry entry in node.Attributes) 856foreach (DictionaryEntry entry in node.Attributes) 885foreach (DictionaryEntry entry in node.Attributes) 937foreach (DictionaryEntry entry in node.Attributes) 976foreach (DictionaryEntry entry in node.Attributes) 1033foreach (DictionaryEntry entry in node.Attributes) 1119foreach (DictionaryEntry entry in node.Attributes) 1175foreach (DictionaryEntry entry in node.Attributes) 1216foreach (DictionaryEntry entry in node.Attributes) 1260foreach (DictionaryEntry entry in node.Attributes) 1300foreach (DictionaryEntry entry in node.Attributes) 1338foreach (DictionaryEntry entry in node.Attributes) 1380foreach (DictionaryEntry entry in node.Attributes) 1425foreach (DictionaryEntry entry in node.Attributes) 1601foreach (DictionaryEntry entry in node.Attributes) 1728foreach (DictionaryEntry entry in node.Attributes)
system\security\cryptography\cryptoconfig.cs (5)
849if (cryptoClass.Attributes.Count > 0) 851DictionaryEntry attribute = (DictionaryEntry)cryptoClass.Attributes[0]; 862foreach(DictionaryEntry attribute in node.Attributes) 895foreach (DictionaryEntry attribute in node.Attributes) 935foreach (DictionaryEntry attribute in node.Attributes)