Mustache.ArgumentCollection.GetArgumentKeyNames C# (CSharp) Method

GetArgumentKeyNames() public method

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

Usage Example

コード例 #1
0
ファイル: InlineGenerator.cs プロジェクト: git-thinh/ui-iot
 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