コード例 #1
0
        public async Task <DisplayableFeature> GetAsync(string branchName, string groupName, string title)
        {
            // Get the feature from storage
            // NOTE: Using the branchName as product name because of backwards compatability
            DisplayableFeature feature = await _featureManager.GetFeatureAsync(branchName, groupName, title, UNKNOWN_VERSION);

            return(feature);
        }
コード例 #2
0
 public async Task <DisplayableFeature> GetFeatureAsync(string productName, string groupName, string featureTitle, string version)
 {
     return(await _featureManager.GetFeatureAsync(productName, groupName, featureTitle, version));
 }