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;
        }