TODO

DISCLAIMER: Project owner DG-MARKT.

TODO

DISCLAIMER: Project owner DG-MARKT.

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