21 references to BehaviorsSection
System.ServiceModel (21)
System\ServiceModel\Configuration\BehaviorsSection.cs (10)
26internal static BehaviorsSection GetSection() 28return (BehaviorsSection)ConfigurationHelpers.GetSection(ConfigurationStrings.BehaviorsSectionPath); 34internal static BehaviorsSection UnsafeGetSection() 36return (BehaviorsSection)ConfigurationHelpers.UnsafeGetSection(ConfigurationStrings.BehaviorsSectionPath); 42internal static BehaviorsSection UnsafeGetAssociatedSection(ContextInformation evalContext) 44return (BehaviorsSection)ConfigurationHelpers.UnsafeGetAssociatedSection(evalContext, ConfigurationStrings.BehaviorsSectionPath); 64BehaviorsSection behaviors = (BehaviorsSection)ConfigurationHelpers.UnsafeGetAssociatedSection(evaluationContext, ConfigurationStrings.BehaviorsSectionPath); 92BehaviorsSection behaviors = (BehaviorsSection)ConfigurationHelpers.UnsafeGetAssociatedSection(evaluationContext, ConfigurationStrings.BehaviorsSectionPath);
System\ServiceModel\Configuration\ClientSection.cs (1)
87BehaviorsSection.ValidateEndpointBehaviorReference(endpoint.BehaviorConfiguration, context, endpoint);
System\ServiceModel\Configuration\ServiceModelSectionGroup.cs (2)
15public BehaviorsSection Behaviors 17get { return (BehaviorsSection)this.Sections[ConfigurationStrings.BehaviorsSectionName]; }
System\ServiceModel\Configuration\ServicesSection.cs (2)
54BehaviorsSection.ValidateServiceBehaviorReference(service.BehaviorConfiguration, context, service); 73BehaviorsSection.ValidateEndpointBehaviorReference(endpoint.BehaviorConfiguration, context, endpoint);
System\ServiceModel\Description\ConfigLoader.cs (6)
1204BehaviorsSection behaviors = null; 1207behaviors = BehaviorsSection.UnsafeGetSection(); 1211behaviors = BehaviorsSection.UnsafeGetAssociatedSection(context); 1238BehaviorsSection behaviors = null; 1241behaviors = BehaviorsSection.UnsafeGetSection(); 1245behaviors = BehaviorsSection.UnsafeGetAssociatedSection(context);