RonnieOverby.MvcAssetManager.AssetManager.Asset.Asset C# (CSharp) Method

Asset() public method

public Asset ( string text, AssetType type ) : System
text string
type AssetType
return System
            public Asset(string text, AssetType type)
            {
                if (text == null) throw new ArgumentNullException("text");

                Text = text;
                Type = type;
            }
AssetManager.Asset