AspectSharp.Builder.XmlEngineBuilder.LoadInterceptors C# (CSharp) Method

LoadInterceptors() private method

private LoadInterceptors ( ) : void
return void
		private void LoadInterceptors()
		{
			XmlNodeList interceptors = _node.SelectNodes("interceptors/interceptor");
			foreach (XmlNode node in interceptors)
			{
				String key = GetRequiredAttribute(node, "key");
				InterceptorEntryDefinition inter = new InterceptorEntryDefinition(key, LexicalInfo.Empty);
				inter.TypeReference = CreateTypeReference(node);

				Configuration.Interceptors.Add(inter);
			}
		}