- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用生成的代理从 Silverlight 调用 WCF 服务,但由于某种原因,我的参数被清空了。我这样打电话:
Events.EventServiceClient events = new Events.EventServiceClient(new BasicHttpBinding(), new EndpointAddress("http://localhost:52878/EventService.svc"));
event.EventTypeName = e.GetType().FullName;
events.AddEventWrapperAsync(new EventWrapper(event));
public System.IAsyncResult BeginAddEventWrapper(BCL.BusinessObjects.EventWrapper Event, System.AsyncCallback callback, object asyncState) {
object[] _args = new object[1];
_args[0] = Event;
System.IAsyncResult _result = base.BeginInvoke("AddEventWrapper", _args, callback, asyncState);
return _result;
}
using System;
using System.Collections.Generic;
using BCL.FLY;
using BCL.CTB;
using BCL.WCN;
using BCL;
using System.ServiceModel;
using System.Runtime.Serialization;
namespace BCL.BusinessObjects
{
[Serializable]
[DataContract]
public class Point
{
[DataMember]
public Double X { get; set; }
[DataMember]
public Double Y { get; set; }
public Point(System.Windows.Point point){
this.X = point.X;
this.Y = point.Y;
}
}
[DataContract]
public class EventWrapper
{
[DataMember]
public Guid Id { get; set; }
[DataMember]
public string StudentID{get;set;}
[DataMember]
public DateTime LocalTimestamp{get;set;}
[DataMember]
public GameEventType Type { get; set; }
[DataMember]
public int Level { get; set; }
[DataMember]
public int Score { get; set; }
[DataMember]
public string message { get; set; }
[DataMember]
public EventLoggingLevel LogLevel { get; set; }
[DataMember]
public int SessionID { get; set; }
[DataMember]
public string EventTypeName { get; set; }
[DataMember]
public double Speed { get; set; }
[DataMember]
public GameEventSubtype SubType { get; set; }
//CTBEvent
[DataMember]
public double BallSize{get;set;}
[DataMember]
public string CTBRuleType{get;set;}
[DataMember]
public Point ClickLocation{get;set;}
[DataMember]
public TimeSpan StimulusDuration{get;set;}
[DataMember]
public List<BallInfo> BallStates{get;set;}
//FLYEvent
[DataMember]
public string Category{get;set;}
[DataMember]
public List<BflyInfo> ButterFlies{get;set;}
//WCNEvent
[DataMember]
public TimeSpan TimeGiven{get;set;}
[DataMember]
public TimeSpan TimeRemaning{get;set;}
[DataMember]
public WCNTrialData TrialData{get;set;}
#region constructors
public EventWrapper() { }
public EventWrapper(IGameEvent _event)
{
this.StudentID = _event.StudentID;
this.LocalTimestamp = _event.LocalTimestamp;
this.Type = _event.Type;
this.Level = _event.Level;
this.Score = _event.Score;
this.message = _event.message;
this.LogLevel = _event.LogLevel;
this.SessionID = _event.SessionID;
this.EventTypeName = _event.EventTypeName;
this.Speed = _event.Speed;
this.SubType = _event.SubType;
}
public EventWrapper(CTBEvent _event)
{
this.StudentID = _event.StudentID;
this.LocalTimestamp = _event.LocalTimestamp;
this.Type = _event.Type;
this.Level = _event.Level;
this.Score = _event.Score;
this.message = _event.message;
this.LogLevel = _event.LogLevel;
this.SessionID = _event.SessionID;
this.EventTypeName = _event.EventTypeName;
this.Speed = _event.Speed;
this.SubType = _event.SubType;
this.BallSize = _event.BallSize;
this.CTBRuleType = _event.CTBRuleType;
this.ClickLocation = new Point(_event.ClickLocation);
this.StimulusDuration = _event.StimulusDuration;
this.BallStates = _event.BallStates;
}
public EventWrapper(FLYEvent _event)
{
this.StudentID = _event.StudentID;
this.LocalTimestamp = _event.LocalTimestamp;
this.Type = _event.Type;
this.Level = _event.Level;
this.Score = _event.Score;
this.message = _event.message;
this.LogLevel = _event.LogLevel;
this.SessionID = _event.SessionID;
this.EventTypeName = _event.EventTypeName;
this.Speed = _event.Speed;
this.SubType = _event.SubType;
this.Category = _event.Category;
this.ButterFlies = _event.ButterFlies;
}
public EventWrapper(WCNEvent _event)
{
this.StudentID = _event.StudentID;
this.LocalTimestamp = _event.LocalTimestamp;
this.Type = _event.Type;
this.Level = _event.Level;
this.Score = _event.Score;
this.message = _event.message;
this.LogLevel = _event.LogLevel;
this.SessionID = _event.SessionID;
this.EventTypeName = _event.EventTypeName;
this.Speed = _event.Speed;
this.SubType = _event.SubType;
this.TimeGiven = _event.TimeGiven;
this.TimeRemaning = _event.TimeRemaning;
this.TrialData = _event.TrialData;
}
#endregion
}
}
public partial class CTBEvent : BCL.WCFEvents.IGameEvent {
private double BallSizeField;
private System.Collections.ObjectModel.ObservableCollection<BCL.WCFEvents.BallInfo> BallStatesField;
private string CTBRuleTypeField;
private System.Windows.Point ClickLocationField;
private System.TimeSpan StimulusDurationField;
private System.Collections.ObjectModel.ObservableCollection<string> _tField;
[System.Runtime.Serialization.DataMemberAttribute()]
public double BallSize {
get {
return this.BallSizeField;
}
set {
if ((this.BallSizeField.Equals(value) != true)) {
this.BallSizeField = value;
this.RaisePropertyChanged("BallSize");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Collections.ObjectModel.ObservableCollection<BCL.WCFEvents.BallInfo> BallStates {
get {
return this.BallStatesField;
}
set {
if ((object.ReferenceEquals(this.BallStatesField, value) != true)) {
this.BallStatesField = value;
this.RaisePropertyChanged("BallStates");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string CTBRuleType {
get {
return this.CTBRuleTypeField;
}
set {
if ((object.ReferenceEquals(this.CTBRuleTypeField, value) != true)) {
this.CTBRuleTypeField = value;
this.RaisePropertyChanged("CTBRuleType");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Windows.Point ClickLocation {
get {
return this.ClickLocationField;
}
set {
if ((this.ClickLocationField.Equals(value) != true)) {
this.ClickLocationField = value;
this.RaisePropertyChanged("ClickLocation");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.TimeSpan StimulusDuration {
get {
return this.StimulusDurationField;
}
set {
if ((this.StimulusDurationField.Equals(value) != true)) {
this.StimulusDurationField = value;
this.RaisePropertyChanged("StimulusDuration");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Collections.ObjectModel.ObservableCollection<string> _t {
get {
return this._tField;
}
set {
if ((object.ReferenceEquals(this._tField, value) != true)) {
this._tField = value;
this.RaisePropertyChanged("_t");
}
}
}
}
最佳答案
几个问题:
关于.net - 从 Silverlight : Somewhere my parameters are disappearing 调用 WCF 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6875166/
目前我正在尝试创建一个 Web 部署包。所以我在我的项目的根目录中添加了一个 parameters.xml 并指定了一些自定义参数。 我发现我的很多参数都部分相同。所以我想做某种参数引用。寻找这个,我
如何设置我的 Symfony 2 项目以使用 parameters.yml 而不是 parameters.ini? 在 Controller 中,我可以像这样从 parameters.ini 中获取变
有什么建议说明为什么此 AWS CloudFormation 不断回滚吗? { "Description" : "Single Instance", "Resources" : {
PARAMETERS: p_1 TYPE i, p_2 TYPE i. 因此在初始屏幕中,我看到了 2 个文本框,每个参数一个。 如果我填写其中一个,但不按回车键,然后我在第二个上调用 F4 帮助,我
我需要存储 Parameter由 Build() 返回作为 Parameter (因为我将参数存储在一个数组中,另一种方法就是为每个参数数量复制粘贴相同的类太多,因为 c# 没有可变参数泛型)。 问题
我正在为我的 CS 类(class)做作业,它使用了 const,我对何时使用它们感到有点困惑。 这3个函数有什么区别? int const function(parameters) int fu
在 xgboost 的文档中,我读到: base_score [default=0.5] : the initial prediction score of all instances, global
我正在创建一个新的 REST 服务。 向 REST 服务传递参数的标准是什么。在 Java 的不同 REST 实现中,您可以将参数配置为路径的一部分或请求参数。例如, 路径参数 http://www.
在我的程序中,我需要验证传递给程序的参数是一个整数,所以我创建了这个小函数来处理用户键入“1st”而不是“1”的情况。 问题是它根本不起作用。我尝试调试,我只能告诉你参数是 12,long 是 2。(
谁能告诉我如何使用存储在 &rest 指定值中的参数。 我已经阅读了很多,似乎作者只知道如何列出所有参数。 (defun test (a &rest b) b) 这很高兴看到,但并不是很有用。 到目前
我使用 git 有一段时间了,但大多数时候我更喜欢与 Intelij IDEA 的集成。现在,为了扩展我对系统的知识和理解,我决定更多地使用命令行。我观察到的是有两种类型的参数: --paramete
我正在用 RAML 编写一些 REST 文档,但我被卡住了。 我的问题: - 我有一个用于搜索的 GET 请求,它可以采用参数“id”或( 独占或 )“引用”。拥有 只有其中之一 是必须的。 我知道怎
我定义了一个这样的 Action : /secure/listaAnnunci.action /login.jsp 我可以从 Action 内部访问参数吗?谢谢 最佳答案 您需要实现 S
我有一个 TeamCity 8.0.3 项目,其中包含多个配置,其中有一个通用参数(定义为项目参数):targetServerIP .这些配置之一是“一键部署”,它通过使用快照依赖项启动其他配置。我已
try{ Class.forName("com.mysql.jdbc.Driver"); mycon = DriverManager.getConnec
我在实际的 javascript 项目中遇到了一个非常奇怪的情况。我创建了一个自定义事件并将数组放入该事件 $.publish("merilon/TablesLoaded", getTables())
在使用参数数组进行插入/更新期间,可以忽略一个/一些特定行的一个/一些参数。 我提供了一个简单的例子。想象一下,我们有一个包含 3 列的表:X、Y 和 Z。我们想在 block 中执行更新(如果缺少某
如何编写接受未定义参数的函数?我想它可以像那样工作: void foo(void undefined_param) { if(typeof(undefined_param) == int) {
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章PDO版本问题 Invalid parameter number: no
Jenkins 管道作业如下所示: 部分 Jenkinsfile(我们使用脚本化管道)是: properties([parameters([string(defaultValue: "", descr
我是一名优秀的程序员,十分优秀!