The .NET framework is a software framework designed mainly for the Microsoft Windows operating system. It includes an implementation of the Base Class Library, Common Language Runtime (commonly referred to as CLI) and Dynamic Language Runtime. It supports many programming languages, including C#, ...

learn more… | top users | synonyms (3)

0
votes
1answer
7 views

Host Visual C++ 2005 library DLLs in 4.0 application for SqlCompact

I have WPF Application Developed on MS VS2010 which connects on his own local DB (SqlCompact3.5) and Sql compact Dlls are very managed internally in solution.. The Issues starts when the application ...
0
votes
1answer
20 views

WCF service timeout setting

I have a ASP.NET 4.0 app that is calling a WCF service. For testing, the closeTimeout, openTimeout, receiveTimeout, and sendTimeout values in the wsHttpBinding binding are all set to 01:00:00. When I ...
5
votes
3answers
64 views

what is difference between Request.QueryString and Request.ServerVariables[“QUERY_STRING”]

i just want to get full querystring from url. Request.QueryString Request.ServerVariables["QUERY_STRING"] Can i use any one of these? which way is preferred? Thanks
1
vote
1answer
70 views

Implementing IUnknown in C#

I've been looking for an example of how to implement IUnknown in C#, but haven't found any decent references or solutions to this. Should it be as simple as... public interface IUnknown { UInt32 ...
0
votes
2answers
25 views

How merge the exe and msi file in single setup?

I m create an setup using visual studio setup project , its create an two file one is msi and second one is exe. but i want to be an single file setup
2
votes
1answer
30 views

Is RabbitMQ Authentification secure without SSL?

We are using RabbitMQ, we'll expose the server over the internet. We'll have multiple clients from multiple computers accessing the server. Our first instinct would be to enable SSL but this seems ...
-1
votes
0answers
44 views

Best way to determine if a .pdf file renders in .net? [closed]

I have a .pdf file that I need to attempt to render from code to determine if it's viewable or corrupt. Is there any free way to accomplish this in .net?
0
votes
1answer
45 views

Decrypt a file and write to same file in c#

I encrypted a file and wrote the encrypted content to the same file . But when I decrypt the file and try to write it to the same i am not able to clear the old content ie my encrypted text . How ...
0
votes
1answer
29 views

Windows authentication mode working on one computer, but not another

We have two development machines, each one running Windows 8, and IIS 8, same versions. I have setup the exact same site, on both machines, but on one machine I get 401.2 error, removing ...
-1
votes
2answers
59 views

Initialize or Lazy load an ObservableCollection<T> in a fast and optimized way from IEnumerable<T> records

I have an IEnumerable<T> collection of about 30,000 records that are created upon application load time and these records are converted to ObservableCollection<T> by doing (which takes ...
-1
votes
0answers
24 views

how to set the page size of the output pdf document with respect to my input pdf document using itextsharp?

I am using iTextSharp for manipulating PDF documents in asp.net web environment.actually i have to read input document and then convert it to an iTextSharp.text.Image. Finally i have to add the image ...
0
votes
1answer
15 views

Add scope and extension to endpoint in code

I have a discovery endpoint for my WCF service. In my discovery client I need to search for all services of specific type. For this purpose I'm thinking to use Scope feature and WCF service metadata ...
1
vote
0answers
17 views

Unable to log out using Google Chrome Frame and Windows Authentication

I have an MVC 4 application that uses Windows Authentication. My current challenge is I need to provide a logout button for users. I can acheive this in straight Chrome, in straight IE, but when I ...
1
vote
2answers
22 views

Where does MVC3 save the revision number?

The actual version number of my solution is placed in Properties/AssemblyInfo.cs: [assembly: AssemblyVersion("1.0.0.*")] The last part of that number is an askerisk. It will be replaced by an ...
1
vote
3answers
27 views

Using WCF, how can I make sure only trusted assemblies call my service?

I have a simple service contract, defined as: [ServiceContact] public interface IEcho { [OperationContract] void Hello(string value); } which is implemented in a local WCF service (accessed ...
1
vote
1answer
56 views

Extension methods not compiling

Consider the following simple Extension method: public static class MyExtensions { public static int DemoLength(this string str, string toAdd) { return (str + toAdd).Length; } } ...
0
votes
0answers
8 views

posting large string variable to web service through MX-Terminal

I am trying to post the large string variable to web service through MX-Termnal device but getting "Response Timeout" how ever when i post the same request from C# test application to same web service ...
16
votes
1answer
224 views

Why are most methods of System.Array static? [closed]

I guess this is more of a framework design question. I recently wondered why most of the methods in System.Array are static. My gut reaction always is to use e.g. IndexOf(object) on the Array ...
0
votes
0answers
12 views

How to replace ProtectedKey in Enterprise Library 6.0 by .net 4.5 Cryptography API

We need to migrate Enterprise Library 5.0 to 6.0 and we are currently using Cryptography Application Block of 5.0. I am using following lines of code to import password protected keyfile into byte[] ...
0
votes
0answers
29 views

Is there any way to process the content before gettting whole response from the server in c# .net

I have to process the response content without waiting to get all content from the server.... If I get some part of data then i have to start process in it, without waiting for all data to come Here ...
0
votes
1answer
45 views

storing multiple controls and update radio button values?

What am doing here is; making a UI to update values visually, will add more support for other types too. Possibly all types. updateIcons this function is called everytime the controller is loaded, and ...
1
vote
0answers
26 views

ServiceStack BasicAuthentication and IIS7.5

I'm using basic authentication with my service stack API. I use the following code. Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] { new BasicAuthProvider() })); ...
1
vote
1answer
42 views

Use reflection to get the Value property of System.Nullable<T> on .Net Compact Framework

The code below runs fine on .Net 3.5: PropertyInfo propertyInfo = typeof(int?).GetProperty("Value"); int? i = 5; object o = propertyInfo.GetValue(i, null); After running, o is of type int and has ...
1
vote
3answers
87 views

How to use array in where condition in Linq queries

This is my linq query. var data = (from obj in lstEventsDataForGrid where obj.strDateCode.Contains(thisWeekend[0] == null ? "" : thisWeekend[0]) || ...
0
votes
2answers
74 views

Update datetime using .NET and SQL

I have Entity Framework ObjectContext. I need to update column of type datetime. Here is my code: ObjectContext.ExecuteStoreCommand(string.Format("update MyTable set DateTimeField='{0}' where Id = ...
-1
votes
5answers
64 views

c# declaring list and populate with values using one line of code [closed]

I have following list var list = new List<IMyCustomType>(); list.Add(new MyCustomTypeOne()); list.Add(new MyCustomTypeTwo()); list.Add(new MyCustomTypeThree()); this ofcourse works, but I'm ...
2
votes
0answers
45 views

DateTimePicker not using custom format string

I am using a WinForms DateTimePicker control with a custom formatting applied to it: this.dateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.dateTimePicker.CustomFormat = ...
-2
votes
1answer
39 views

An unhandled exception of type 'System.IndexOutOfRangeException' occurred. Additional information: Index was outside the bounds of the array

My code is showing unhandled exception of ArrayIndexOutOfRangeException. public static DateTime storeTime(String date) { string[] dateSplit; string[] timeSplit; ...
0
votes
2answers
33 views

Get current item from custom editor Sitecore 6.5

I have trouble with get current item where I define custom editor. I need to get Id of current page (article) but Sitecore.Context.Item return to me null. How get id from current item? UPD: Editor ...
0
votes
0answers
15 views

Java client and InstanceContextMode

I have an application consisting of WCF service and several clients, all made in .NET (C#). Now I need to add another client, it has to be in Java, and I don't have much experience there. So I am ...
1
vote
2answers
57 views

How to check for subscribers before raising an event in VB.NET

In C#, you do something like this: if (Changed != null) Changed(this, EventArgs.Empty); But what do you do in VB.NET? There is RaiseEvent, but is RaiseEvent Changed(Me, EventArgs.Empty) ...
2
votes
7answers
126 views

Execution order of conditions in C# If statement

There are two if statements below that has multiple conditions using logical operators. Logically both are same but the order of check differs. The first one works and the second one fails. I ...
1
vote
1answer
33 views

How to convert base 64 string to array of bytes without data loss?

I have a base 64 string. I want to write is at as bytes of array to binary file(.dat) I used the following code to do that. Please refer. string s = ...
0
votes
1answer
29 views

Error: File it is being used by another process, even if closed and disposed

I'm having problems to access a file. Every 1 second (more or less) my application is calling this procedure to download a sourcecodepage and save it in a textfile, the problem is sometimes when is ...
-2
votes
0answers
11 views

How to do migration from sharepoint 2010 project to 2013.step by step process [closed]

I am new to sharepoint . i want to know the step by step procedure to convert a sharepoint 2010 application to 2013.(means a 2010 visualstudio webpart or event receiver to 2012 visual studio) ,( ...
2
votes
1answer
52 views

Get the ID of all child nodes from multiple treeview (skip parent node id). How?

I have used a treeview in a user control which is used multiple times in a single page showing different data. There would be only three levels of nodes (Parent - Child - Sub Child) By default the ...
0
votes
1answer
17 views

Multicolumn Dropdown in Ultragrid

I have to do some maintenance on an VB.NET application (Visual Studio 2012) that uses Infragistics. I need to modify column in an existing UltraGrid control. One of the column is already a dropdown ...
-1
votes
5answers
92 views

Is there an object that contains the parameters of a function?

In a method that is so long that it scrolls off the screen. Just to make life easier as I program, if I want to refer to the variables of a class I can use the Me or this objects depending on which ...
0
votes
0answers
24 views

How can I find out when a picture was actually taken in C# running on windows server 2012?

I'm using the below code :- public static DateTime GetDateTakenFromImage(string path) { using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read)) using ...
1
vote
0answers
11 views

.NET Client-Server shared objects

I have a client-server setup where both make use of the same objects, but only the server is allowed to instantiate these object. The client can only make use of what it requests from the server. When ...
1
vote
1answer
38 views

how to syncronize two functions using lock

I have two functions A and B i want to prevent them two run simultaniusly. should I use lock or mutex or interlocked? this is what I tried class C { object obj = new Object(); void A() ...
0
votes
0answers
26 views

Visual Studio - intellisense for javascript custom object

I created the following javascript object: var Content = Content || {}; // Constructor defines properties and inits object Content.ProductManager = function () { // ... }; ...
0
votes
0answers
13 views

How to run different versions of a database-driven WPF client concurrently in .NET?

We have a data-intensive .NET WPF application which in its current form directly accesses a shared MS SQL database. The client continuously collects large amounts of data during production and ...
0
votes
1answer
25 views

.Net MVC4 - How to return exception in json format?

I have a MVC4 application where I call a controller action from javascript using jquery. When an exception occurs in the controller the returned response text is in HTML format. I want it to be in ...
1
vote
1answer
25 views

Listview ItemCommand not firing because of jquery

I have a listview of categories with checkboxes (categories filter). But I have made a custom checkBoxes (linkButton with css is my checkBox). <asp:LinkButton CssClass="checkBox" ...
0
votes
1answer
30 views

Should I be using an IAuthorizationFilter if I wish to create an ApiKey restricted resource with ASP.NET MVC4?

I have a few simple routes which I wish to restrict via a simple querystring param. If the key is incorrect or not provided, then I wish to throw a NotAuthorizedException. Please don't suggest I use ...
2
votes
2answers
35 views

Bind the textbox value with values in other controls

I have a textbox whose text value I want to bind based on the values selected in two other controls. For example, I have a ListBox and I choose a value say "Blue" and one other TextBox whose text ...
0
votes
2answers
89 views

How can I limit class usage?

I have a list of List<object>. How can I limit that only Class1 and Class2 should be used there is list? Class1 and Class2 are basically different. I would guess what there is basic class for ...
0
votes
1answer
17 views

Round trip XML serializing with .Net DataContractSerializer fails

I seem to be getting some junk at the head of my serialized XML string. I have a simple extension method public static string ToXML(this object This) { DataContractSerializer ser = ...
0
votes
0answers
25 views

How to create a jpeg file from image extracted from the pdf file using itextsharp?

I am using iTextSharp for manipulating pdf file in my asp.net web application. I have converted pdf pages into iTextSharp.text.Image.Now I want to save this image files into hard disk named like ...

1 3 4 5 6 7 3099