15 references to CommonBehaviorsSection
System.ServiceModel (15)
System\ServiceModel\Configuration\CommonBehaviorsSection.cs (6)
25internal static CommonBehaviorsSection GetSection() 27return (CommonBehaviorsSection)ConfigurationHelpers.GetSection(ConfigurationStrings.CommonBehaviorsSectionPath); 33internal static CommonBehaviorsSection UnsafeGetSection() 35return (CommonBehaviorsSection)ConfigurationHelpers.UnsafeGetSection(ConfigurationStrings.CommonBehaviorsSectionPath); 41internal static CommonBehaviorsSection UnsafeGetAssociatedSection(ContextInformation contextEval) 43return (CommonBehaviorsSection)ConfigurationHelpers.UnsafeGetAssociatedSection(contextEval, ConfigurationStrings.CommonBehaviorsSectionPath);
System\ServiceModel\Configuration\ServiceModelSectionGroup.cs (2)
35public CommonBehaviorsSection CommonBehaviors 37get { return (CommonBehaviorsSection)this.Sections[ConfigurationStrings.CommonBehaviorsSectionName]; }
System\ServiceModel\Description\ConfigLoader.cs (7)
172CommonBehaviorsSection commonBehaviors = ConfigLoader.LookupCommonBehaviors(ConfigurationHelpers.GetEvaluationContext(channelElement)); 191CommonBehaviorsSection commonBehaviors = ConfigLoader.LookupCommonBehaviors(this.configurationContext); 439CommonBehaviorsSection commonBehaviors = ConfigLoader.LookupCommonBehaviors( 764CommonBehaviorsSection commonBehaviors = ConfigLoader.LookupCommonBehaviors(ConfigurationHelpers.GetEvaluationContext(channelEndpointElement)); 1261static CommonBehaviorsSection LookupCommonBehaviors(ContextInformation context) 1269? CommonBehaviorsSection.UnsafeGetSection() 1270: CommonBehaviorsSection.UnsafeGetAssociatedSection(context);