AspectSharp.Lang.AST.Visitors.XmlTreeVisitor.OnInterceptorEntryDefinition C# (CSharp) 메소드

OnInterceptorEntryDefinition() 공개 메소드

public OnInterceptorEntryDefinition ( InterceptorEntryDefinition interceptor ) : void
interceptor InterceptorEntryDefinition
리턴 void
		public override void OnInterceptorEntryDefinition(InterceptorEntryDefinition interceptor)
		{
			Push( Document.CreateNode(XmlNodeType.Element, "interceptor", null) );
			XmlAttribute att = Document.CreateAttribute("key");
			att.Value = interceptor.Key;
			Current.Attributes.Append( att );
			SerializeTypeReference(interceptor.TypeReference);
			Pop();
		}