AW.Webapi.Sample.Areas.HelpPage.ImageSample.ImageSample C# (CSharp) 메소드

ImageSample() 공개 메소드

Initializes a new instance of the ImageSample class.
public ImageSample ( string src ) : System
src string The URL of an image.
리턴 System
        public ImageSample(string src)
        {
            if (src == null)
            {
                throw new ArgumentNullException("src");
            }
            Src = src;
        }