| Silverlight 5 | WinRT |
| public sealed class DiagnosticSection | |
| : ConfigurationSection | |
| public Boolean PerformanceCountersEnabled { get; set; } | |
| protected virtual ConfigurationPropertyCollection Properties { get; } |
| public sealed class NetPipeSection | |
| : ConfigurationSection | |
| public SecurityIdentifierElementCollection AllowAccounts { get; } | |
| public Int32 MaxPendingAccepts { get; set; } | |
| public Int32 MaxPendingConnections { get; set; } | |
| protected virtual ConfigurationPropertyCollection Properties { get; } | |
| public TimeSpan ReceiveTimeout { get; set; } | |
| protected virtual void InitializeDefault(); |
| public sealed class NetTcpSection | |
| : ConfigurationSection | |
| public SecurityIdentifierElementCollection AllowAccounts { get; } | |
| public Int32 ListenBacklog { get; set; } | |
| public Int32 MaxPendingAccepts { get; set; } | |
| public Int32 MaxPendingConnections { get; set; } | |
| protected virtual ConfigurationPropertyCollection Properties { get; } | |
| public TimeSpan ReceiveTimeout { get; set; } | |
| public Boolean TeredoEnabled { get; set; } | |
| protected virtual void InitializeDefault(); |
| public sealed class SecurityIdentifierElement | |
| : ConfigurationElement | |
| protected virtual ConfigurationPropertyCollection Properties { get; } | |
| public SecurityIdentifier SecurityIdentifier { get; set; } |
| public sealed class SecurityIdentifierElementCollection | |
| : ServiceModelConfigurationElementCollection`1<SecurityIdentifierElement>, ICollection, IEnumerable | |
| protected virtual Object GetElementKey(ConfigurationElement element); |
| public sealed class ServiceModelActivationSectionGroup | |
| : ConfigurationSectionGroup | |
| public DiagnosticSection Diagnostics { get; } | |
| public NetPipeSection NetPipe { get; } | |
| public NetTcpSection NetTcp { get; } | |
| static public ServiceModelActivationSectionGroup GetSectionGroup(Configuration config); |