public IXmlAttributeValue ParseReferenceIdentifier(IXmlAttributeValue xmlAttributeValue, IQualifier qualifier) { ReferenceModuleAttributeValue attributeValue = new ReferenceModuleAttributeValue(); return ParseAttributeValueAspect(xmlAttributeValue, attributeValue, delegate(string text) { return ParseMemberIdentifier (text, qualifier); }); }
public IXmlAttributeValue ParseReferenceModule(IXmlAttributeValue xmlAttributeValue) { ReferenceModuleAttributeValue attributeValue = new ReferenceModuleAttributeValue(); return ParseAttributeValueAspect(xmlAttributeValue, attributeValue, ParseModule); }