Questions tagged [.net-4.5.2]

.Net 4.5.2 is the version of the popular Microsoft .Net framework prior to version 4.6. It is backward compatible with .Net 4.5 & .Net 4.5.1 & adds several new features. Use for questions specifically related to .NET Framework 4.5.2. For questions on .NET Framework generally, use the .net tag.

.Net 4.5.2 is the version of the popular Microsoft .Net framework. It is backward compatible with .Net 4.5 & .Net 4.5.1 and adds several new features.

What's New in .NET Framework 4.5.2
.NET Framework 4.5.2 System Requirements

Released by Microsoft Corporation
Version Number: 4.0.30319.34000
Release Date: 2014-05-05

139 questions
0
votes
1 answer

Unable to decompress file after decrypt it

I'm compressing and then encrypting a file. Not problem with this. Problems come when I try to decrypt the file and finally, I try to decompress the decrypted file. In that moment, I get an exception in ReadEndOfCentralDirectory: (Updated) Offset to…
AdSsa
  • 268
  • 1
  • 6
  • 21
0
votes
1 answer

XamlWriter and XamlReader with stream based images?

I create images on the fly by using the following code: Public Function ToBitmapImage(byteArray As Byte()) As BitmapImage Dim image As New BitmapImage() Dim stream As New MemoryStream(byteArray) image.BeginInit() image.StreamSource =…
Peter
  • 37,042
  • 39
  • 142
  • 198
0
votes
1 answer

Outlook 2010 Add-In not working with error Exception from HRESULT: 0x8004063E

We have an Outlook 2010 add-in which worked fine till it was using .NET Framework 4.0. After the .NET framework was upgraded to 4.5.2, it stopped loading in a few users' machines (the issue is not occurring for everyone, works fine in my machine).…
0
votes
1 answer

Consuming Saml2.0 in MVC5 .net frame work 4.5 (Saml2.0 token is generated by F5 BigIp tool)

Current State of web application: We have an existing web application designed in AngularJs, MVC5. Authentication is happening against our custom database. SignIn: We did over ride Microsoft.AspNet.Identity.UserManager and other source classes to…
0
votes
0 answers

Changing framework from .net 4.5.2 to .net 4.0, System.BadImageFormat Exception

I'm working on a windows form application that I built to target .net 4.5.2. I then found out my client's machines only run .net 4.0 and they would not be upgrading soon. I then changed the framework that the application was targeting to 4.0 and got…
0
votes
1 answer

.NET 4.5.2 is not detected in silent mode by WiX 3.10.2

We have updated our kits to use WiX 3.10.2 and detect .NET Framework 4.5.2 using WIX_IS_NETFRAMEWORK_452_OR_LATER_INSTALLED property - this works, however not in all cases. When installation is started in silent mode (/qb switch),…
MarcusUA
  • 394
  • 3
  • 14
0
votes
2 answers

Windows Service with System.Threading.Timer action for an interval within a range

I have a requirement to create a Windows Service (Windows Task Scheduler and third-party libraries/utilities like Quartz.net are not options for me) that runs an action once every hour, on the hour, for 12 hours beginning at 8:00 AM. I've written…
user2063351
  • 503
  • 2
  • 13
  • 31
0
votes
1 answer

Can an excel file be created/manipulated using Office developer tools?

My current console application project uses office.interop.excel to create and update excel files. This project is being upgraded and is moving to new servers where office will not be installed. I have seen many questions asking about creating…
0
votes
2 answers

Create a hash from an id and sign it

Our user recieve emails with a prepared hyperlink. This hyperlink has a parameter. When the user clicks the hyperlink I need to make sure that the user did not tamper with the parameter. The parameter is a simple integer. I would like to create a…
Pascal
  • 12,265
  • 25
  • 103
  • 195
0
votes
1 answer

ReflectedType of MemberExpression is the base class rather than actual class used

So I have a the following classes class Person { virtual string Property{get;set;} } and class Manager : Person { [SomeAttribute("Hello")] override string Property {get;set;} } If I have a member expression on type Manager,…
Dave
  • 1,645
  • 2
  • 23
  • 39
0
votes
3 answers

Web page perform long task without timing out

Our site has an admin page that allows administrators to kick off a process that copies a given template CMS page out to a couple hundred directories. I guess this process takes a few minutes to run so the page times out. So what I think we need it…
xr280xr
  • 12,621
  • 7
  • 81
  • 125
0
votes
1 answer

Change "" on request recieved in WCF

I have a WCF service implemented via custom wsdl. It simple have 5 methods as per wsdl. Call to My service from standard client works fine. Problem was in some old implementation which send SoapAction="" I wanted to change the soapAction to some…
Kamran Shahid
  • 3,954
  • 5
  • 48
  • 93
0
votes
1 answer

Generic pass through class for GET, POST, PUT, DELETE from angular website to web api

I have an angular web application deployed to server1 and a web api exists in server2. Our architects are saying that there will be firewalls enabled in server2 so that all the request will be blocked except from server1 [website]. That means, I…
user007
  • 1,504
  • 2
  • 18
  • 51
0
votes
1 answer

WCF to WCF calls via channel factory getting queued either in first or second application

I have a couple of WCF .net 4.5.2 application hosted in IIS 8.5 in windows 2012 r2. Both services application are on different system. My first WCF application handle multiple Requests from outside. This WCF service itself work with second WCF…
Kamran Shahid
  • 3,954
  • 5
  • 48
  • 93
0
votes
2 answers

Encoding issue after migrated to .net framework 4.5.2

I have a funny problem after i migrated to .NET Framework 4.5.2, here are my code: QuoteMachineryColor c1 = new QuoteMachineryColor(); c1.ColorName = "单色"; // Problem in here c1.InclusiveOperationQuantity = 2000; …
Eddy Ma
  • 98
  • 9