mergedServices.LexiconLiteral.LexiconLiteral C# (CSharp) Method

LexiconLiteral() public method

public LexiconLiteral ( string URI, string label, string QuestionMatch, string typeOfOwner ) : System
URI string
label string
QuestionMatch string
typeOfOwner string
return System
        public LexiconLiteral(string URI, string label, string QuestionMatch, string typeOfOwner)
        {
            this.URI = URI;
            this.label = label;
            this.QuestionMatch = QuestionMatch;
            List<string> typeOfOwnerList = new List<string>();
            typeOfOwnerList.Add(typeOfOwner);
            this.typeOfOwner = typeOfOwnerList;
        }

Same methods

LexiconLiteral::LexiconLiteral ( ) : System
LexiconLiteral::LexiconLiteral ( string URI, string label, string QuestionMatch, List typeOfOwnerList ) : System