Deveel.Data.FeatureInfo.FeatureInfo C# (CSharp) Method

FeatureInfo() private method

private FeatureInfo ( string featureName, string version ) : System
featureName string
version string
return System
        private FeatureInfo(string featureName, string version)
        {
            if (String.IsNullOrEmpty(featureName))
                throw new ArgumentNullException("featureName");

            FeatureName = featureName;
            Version = version;
        }