TODO

DISCLAIMER: Project owner DG-MARKT.

TODO

DISCLAIMER: Project owner DG-MARKT.

Beispiel #1
0
		public InMemoryDocument(byte[] document, string name)
		{
			this.document = document;
			this.name = name;
			this.mimeType = MimeType.FromFileName(name);
		}
Beispiel #2
0
		public InMemoryDocument(byte[] document, string name, MimeType mimeType)
		{
			this.document = document;
			this.name = name;
			this.mimeType = mimeType;
		}
Beispiel #3
0
 public InMemoryDocument(byte[] document, string name, MimeType mimeType)
 {
     this.document = document;
     this.name     = name;
     this.mimeType = mimeType;
 }
Beispiel #4
0
 public InMemoryDocument(byte[] document, string name)
 {
     this.document = document;
     this.name     = name;
     this.mimeType = MimeType.FromFileName(name);
 }
Beispiel #5
0
 public virtual MimeType GetMimeType()
 {
     return(MimeType.FromFileName(GetName()));
 }