Mustache.ArgumentCollection.GetArgumentKeyNames C# (CSharp) Méthode

GetArgumentKeyNames() public méthode

public GetArgumentKeyNames ( ) : object>.Dictionary
Résultat object>.Dictionary
        public Dictionary<string, object> GetArgumentKeyNames()
        {
            return _argumentLookup.ToDictionary(p => p.Key.Name, p => (object)p.Value);
        }

Usage Example

Exemple #1
0
 private Dictionary <string, object> GetArguments(Scope scope, Scope context)
 {
     if (_definition.IsSetter)
     {
         return(_arguments.GetArgumentKeyNames());
     }
     else
     {
         return(_arguments.GetArguments(scope, context));
     }
 }
All Usage Examples Of Mustache.ArgumentCollection::GetArgumentKeyNames