Microsoft.HockeyApp.Model.FeedbackAttachment.FeedbackAttachment C# (CSharp) 메소드

FeedbackAttachment() 공개 메소드

public FeedbackAttachment ( string fileName, byte dataBytes, string contentType ) : System.IO
fileName string
dataBytes byte
contentType string
리턴 System.IO
        public FeedbackAttachment(string fileName, byte[] dataBytes, string contentType)
        {
            this.FileName = fileName;
            this.ContentType = contentType;
            this.DataBytes = dataBytes;
        }