Ejemplo n.º 1
0
        public IXmlAttributeValue ParseReferenceIdentifier(IXmlAttributeValue xmlAttributeValue, IQualifier qualifier)
        {
            ReferenceModuleAttributeValue attributeValue = new ReferenceModuleAttributeValue();

            return ParseAttributeValueAspect(xmlAttributeValue, attributeValue, delegate(string text) {
                                                                                                          return ParseMemberIdentifier
                                                                                                              (text,
                                                                                                               qualifier); });
        }
Ejemplo n.º 2
0
        public IXmlAttributeValue ParseReferenceModule(IXmlAttributeValue xmlAttributeValue)
        {
            ReferenceModuleAttributeValue attributeValue = new ReferenceModuleAttributeValue();

            return ParseAttributeValueAspect(xmlAttributeValue, attributeValue, ParseModule);
        }