Exemple #1
0
 public static void ExecuteMethod_SetBinaryContent(IContainerOwner owner, IInformationObject createdObject, Dictionary <string, HttpPostedFile> binaryContentFiles)
 {
     foreach (var fileKey in binaryContentFiles.Keys)
     {
         string contentInfo = fileKey.Substring(5); // Substring("File_".Length);
         ModifyInformationSupport.SetBinaryContent(owner, contentInfo, createdObject,
                                                   binaryContentFiles[fileKey]);
     }
 }
Exemple #2
0
 public static void ExecuteMethod_SetObjectLinks(IInformationObject createdObject, NameValueCollection objectLinkValues)
 {
     ModifyInformationSupport.SetObjectLinks(createdObject, objectLinkValues);
 }
Exemple #3
0
 public static void ExecuteMethod_SetFieldValues(IInformationObject createdObject, NameValueCollection fieldValues)
 {
     ModifyInformationSupport.SetFieldValues(createdObject, fieldValues);
 }
Exemple #4
0
        private void HandleOwnerClientTemplatePOST(IContainerOwner containerOwner, HttpRequest request)
        {
            var form = request.Form;

            ModifyInformationSupport.ExecuteOwnerWebPOST(containerOwner, form, request.Files);
        }