TODO

DISCLAIMER: Project owner DG-MARKT.

TODO

DISCLAIMER: Project owner DG-MARKT.

コード例 #1
0
ファイル: InMemoryDocument.cs プロジェクト: Gianluigi/dssnet
		public InMemoryDocument(byte[] document, string name)
		{
			this.document = document;
			this.name = name;
			this.mimeType = MimeType.FromFileName(name);
		}
コード例 #2
0
ファイル: InMemoryDocument.cs プロジェクト: Gianluigi/dssnet
		public InMemoryDocument(byte[] document, string name, MimeType mimeType)
		{
			this.document = document;
			this.name = name;
			this.mimeType = mimeType;
		}
コード例 #3
0
ファイル: InMemoryDocument.cs プロジェクト: ylepikhov/dssnet
 public InMemoryDocument(byte[] document, string name, MimeType mimeType)
 {
     this.document = document;
     this.name     = name;
     this.mimeType = mimeType;
 }
コード例 #4
0
ファイル: InMemoryDocument.cs プロジェクト: ylepikhov/dssnet
 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()));
 }