Advanced Forum Search Results
-
I have a class in a Silverlight enabled WCF Service.
I can access this class and [DataMember] parameters.
But I can't access CONST parameters and Methods in class on client side.
How can I do? (Sory my bad english)
[DataContract]
public class UserItem
{
[DataMember]
public Guid SessionID { ...
-
You can use Activity.Dll. It's simple to use.
-
Is there any way to solve this problem ?
-
In RIA date/time variables is a problem.
-
http://blogs.msdn.com/dphill/archive/2008/10/07/silverlight-navigation-part-1.aspx
-
Is Localization have an IsBusy property ?
-
You can use ActivtyControl for non RIA App.
Add "ActivityControl.dll" to references and use it.
-
OK. No problem. My mistake.
-
I am trying to build and publish my web app.
When I do a publish though I get the message that the publish failed, but get no further information:========== Publish: 0 succeeded, 1 failed, 0 skipped ==========
-
// when open a page send parameters like this.
abc.xaml?param1=value1&param2=value2
if (this.NavigationContext.QueryString.ContainsKey("param1"))
{
string value1 = this.NavigationContext.QueryString["param1"];
}