コード例 #1
0
ファイル: EntryCreator.cs プロジェクト: m-xristov/Joyride
 public EntryCreator(Component component, string collectionName, IDictionary <string, string> elementMap, ProcessKeyValue processKeyValue)
 {
     Component       = component;
     ElementMap      = elementMap;
     CollectionName  = collectionName;
     ProcessKeyValue = processKeyValue;
 }
コード例 #2
0
ファイル: EntryCreator.cs プロジェクト: m-xristov/Joyride
 public EntryCreator(Component component, string collectionName, IDictionary <string, string> elementMap)
 {
     Component       = component;
     ElementMap      = elementMap;
     CollectionName  = collectionName;
     ProcessKeyValue = (key, text) => text;
 }