Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~844 People Reached
Favorite Forums
Favorite Tags
Member Avatar for koleraba

Hi I'm developing a WCF service, which defines a callback contract through which the server can call a method on the client. Below is a sample code: [code] [ServiceContract(SessionMode = SessionMode.Required, CallbackContract = (typeof(ISampleServiceCallback)))] public interface ISampleService { [OperationContract(IsInitiating = true, IsTerminating = false, IsOneWay = false)] bool Register(int controllerId); …

Member Avatar for yahawili
0
543
Member Avatar for Drahmina

I have a String stored in this format "10/10/2009 12:00:00". I would like to convert this into a DateTime object so I can add it into the Outlook calender. I have tried using the following code but it doesnt seem to work. DateTime startDate = DateTime.Parse(appointments[i]); (where appointments[i] is a …

Member Avatar for Ravenheart
0
257
Member Avatar for koleraba

I created a CustomSection class by extending the ConfigurationSection. I red quite a few articles on the subject and they all sugest the same approach, but it doesn't work for me, and I dont have a clue what am I doing wrong. So any idea or help will be appreciated. …

0
44