Adxstudio.Xrm.Activity.ActivityMimeAttachmentDataAdapter.GetAttachment(Microsoft.Xrm.Sdk.Entity)

Here are the examples of the csharp api class Adxstudio.Xrm.Activity.ActivityMimeAttachmentDataAdapter.GetAttachment(Microsoft.Xrm.Sdk.Entity) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: xRM-Portals-Community-Edition
Source File: ActivityMimeAttachmentDataAdapter.cs
public void DownloadAttachment(HttpContextBase context, Entity entity, Entity webfile = null)
		{
			var attachment = GetAttachment(entity);
			DownloadFromCRM(context, attachment, webfile);
		}