static internal TokenType ToTokenType(this WCFTokenType o)
        {
            TokenType result = new TokenType();

            result.Name = o.Name;

            return(result);
        }
Exemple #2
0
        public WCFTokenType ToWCFTokenType()
        {
            WCFTokenType result = new WCFTokenType();

            result.Name = this.Name;

            return(result);
        }