Click here to Skip to main content
15,898,599 members

Comments by Member 10801309 (Top 13 by date)

Member 10801309 8-Sep-14 2:16am View    
Yes, I check after using break point, I am getting Null Reference Exception, and you are absolutely right, that problem is in _localendpoint.ConferenceServices. Problem is _localendpoint OBJECT is empty,I am not getting how to pass values to it.
You gave enough links, I will try to see what i am doing wrong here.
Member 10801309 4-Sep-14 8:24am View    
Hello, I found this useful, because reading from this, at least i am able to understand and write some code. but issue is not resolved yet

private void button1_Click(object sender, EventArgs e)
{

ConferenceScheduleInformation CSI = new ConferenceScheduleInformation();

CSI.AccessLevel = ConferenceAccessLevel.Everyone;
CSI.AutomaticLeaderAssignment = AutomaticLeaderAssignment.Everyone;
CSI.ConferenceId = "Whatever";
CSI.Description = "Test Conference";
CSI.Subject = "Testing_Subject";
CSI.Mcus.Add(new ConferenceMcuInformation(McuType.AudioVideo));


try
{
_localendpoint.ConferenceServices.BeginScheduleConference(CSI,
ar =>
{
try
{
Conference newConference = _localendpoint.ConferenceServices.EndScheduleConference(ar);
//DoSomethingWithTheConference(newConference);
}
catch (RealTimeException ex)
{
Console.WriteLine(ex);
}
},
null);
}
catch (InvalidOperationException ex)
{
Console.WriteLine(ex);
}

}

I Am getting Null reference exception here <br>Conference newConference </br>, How to solve this, What mistake i am making??

Member 10801309 2-Jun-14 10:59am View    
This Helped Me. To find the answer, But this Article also helped me alot.

http://sharpsnippets.wordpress.com/2014/03/01/cxaml-listbox-search-filter-and-highlight-13/
Member 10801309 28-May-14 0:44am View    
Deleted
Sir, That is okay, if i am using windows phone 7, But i am working on windows phone 8 application and in this TextBox is replaced with TextBlock, and Textblock dont have any property like TextChanged. What should i do now??
Member 10801309 16-May-14 0:56am View    
Hello Sir, i am having a doubt, you can see my whole share button click event handler method i posted below. In that what i think is, i am giving posttaskasync wrong path. I am talking about this line
await fb.PostTaskAsync(String.Format("/me/{0}:eat", Constants.FacebookAppGraphAction), new { meal = Video_Id, tags = Video_Id, place = Video_Id });
because before getting this bool object exception i was getting
(OAuthException - #2500) Unknown Path components:/namespacebyfacebook

now when i made changes to this line then i got rid of this exception but started getting new above exception. I hope you got what i am trying to explain.

AND using break point at e.Getresultdata i am getting
e(facebook.facebookApiEventargs)<br>
and in that
base
Non-public members
and in non-public members
result | true