diff --git a/SGGL/BLL/API/APIPersonService.cs b/SGGL/BLL/API/APIPersonService.cs index 21e9af53..3ab4c83e 100644 --- a/SGGL/BLL/API/APIPersonService.cs +++ b/SGGL/BLL/API/APIPersonService.cs @@ -898,6 +898,7 @@ namespace BLL } getPerson.ExchangeTime2 = null; + getPerson.RealNameUpdateTime = null; getPerson.IsForeign = person.IsForeign; getPerson.IsOutside = person.IsOutside; db.SubmitChanges(); @@ -1099,7 +1100,7 @@ namespace BLL } #endregion - #region 获取人员信息出入场记录 + #region 获取人员信息出入场记录 /// /// 获取人员信息出入场记录 /// @@ -1153,6 +1154,14 @@ namespace BLL #region 获取人员信息出入场记录 /// + /// + /// + public static int getPersonInOutListCount + { + get; + set; + } + /// /// 获取人员信息出入场记录 /// /// @@ -1161,84 +1170,114 @@ namespace BLL /// /// /// - public static List getPersonInOutList(string projectId, string userUnitId, string unitId, string workPostId, string strParam, string startTime, string endTime) + public static List getPersonInOutList(string projectId, string userUnitId, string unitId, string workPostId, string strParam, string startTime, string endTime, int pageIndex) { using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { DateTime? startTimeD = Funs.GetNewDateTime(startTime); DateTime? endTimeD = Funs.GetNewDateTime(endTime); - var personInOuts = from x in db.SitePerson_PersonInOut - join y in db.SitePerson_Person on x.PersonId equals y.PersonId - where x.ProjectId == projectId - select new Model.PersonInOutItem - { - PersonId = x.PersonId, - PersonName = y.PersonName, - ProjectId = x.ProjectId, - UnitId = y.UnitId, - UnitName = db.Base_Unit.First(z => z.UnitId == y.UnitId).UnitName, - WorkPostId = y.WorkPostId, - WorkPostName = db.Base_WorkPost.First(z => z.WorkPostId == y.WorkPostId).WorkPostName, - IsIn = x.IsIn, - IsInName = x.IsIn == true ? "进场" : "出场", - ChangeTime = string.Format("{0:yyyy-MM-dd HH:mm}", x.ChangeTime), - ChangeTimeD = x.ChangeTime, - }; + var getPersonInOutList = from x in db.SitePerson_PersonInOut + where x.ProjectId == projectId + select x; if (!string.IsNullOrEmpty(userUnitId) && userUnitId != Const.UnitId_CWCEC) { - personInOuts = personInOuts.Where(x => x.UnitId == userUnitId); + getPersonInOutList = getPersonInOutList.Where(x => x.UnitId == userUnitId); } if (!string.IsNullOrEmpty(unitId)) { - personInOuts = personInOuts.Where(x => x.UnitId == unitId); + getPersonInOutList = getPersonInOutList.Where(x => x.UnitId == unitId); } if (!string.IsNullOrEmpty(workPostId)) { - personInOuts = personInOuts.Where(x => x.WorkPostId == workPostId); + getPersonInOutList = getPersonInOutList.Where(x => x.WorkPostId == workPostId); } if (startTimeD.HasValue) { - personInOuts = personInOuts.Where(x => x.ChangeTimeD >= startTimeD); + getPersonInOutList = getPersonInOutList.Where(x => x.ChangeTime >= startTimeD); } if (endTimeD.HasValue) { - personInOuts = personInOuts.Where(x => x.ChangeTimeD <= endTimeD); + getPersonInOutList = getPersonInOutList.Where(x => x.ChangeTime <= endTimeD); } if (!string.IsNullOrEmpty(strParam)) { - personInOuts = personInOuts.Where(x => x.PersonName.Contains(strParam)); + getPersonInOutList = from x in getPersonInOutList + join y in db.SitePerson_Person on x.PersonId equals y.PersonId + where y.ProjectId == projectId && y.PersonName.Contains(strParam) + select x; + } + + getPersonListCount = getPersonInOutList.Count(); + if (getPersonListCount == 0) + { + return null; + } + else + { + var personInOuts = from x in getPersonInOutList + join y in db.SitePerson_Person on x.PersonId equals y.PersonId + where x.ProjectId == projectId + select new Model.PersonInOutItem + { + PersonId = x.PersonId, + PersonName = y.PersonName, + ProjectId = x.ProjectId, + UnitId = y.UnitId, + UnitName = db.Base_Unit.First(z => z.UnitId == y.UnitId).UnitName, + WorkPostId = y.WorkPostId, + WorkPostName = db.Base_WorkPost.First(z => z.WorkPostId == y.WorkPostId).WorkPostName, + IsIn = x.IsIn, + IsInName = x.IsIn == true ? "进场" : "出场", + ChangeTime = string.Format("{0:yyyy-MM-dd HH:mm}", x.ChangeTime), + ChangeTimeD = x.ChangeTime, + }; + if (pageIndex > 0) + { + return personInOuts.OrderByDescending(x => x.ChangeTimeD).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); + } + else + { + return personInOuts.ToList(); + } } - return personInOuts.OrderByDescending(x => x.ChangeTimeD).ToList(); } } #endregion #region 根据人员ID获取个人出入场记录 /// + /// + /// + public static int getPersonInOutListByPersonIdCount + { + get; + set; + } + /// /// 根据人员ID获取个人出入场记录 /// /// /// /// /// - public static List getPersonInOutListByPersonId(string personId, string startTime, string endTime) + public static List getPersonInOutListByPersonId(string personId, string startTime, string endTime, int pageIndex) { using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { DateTime? startTimeD = Funs.GetNewDateTime(startTime); DateTime? endTimeD = Funs.GetNewDateTime(endTime); var personInOuts = from x in db.SitePerson_PersonInOut - join y in db.SitePerson_Person on x.PersonId equals y.PersonId where x.PersonId == personId select new Model.PersonInOutItem { + PersonInOutId =x.PersonInOutId, PersonId = x.PersonId, - PersonName = y.PersonName, + PersonName = db.SitePerson_Person.First(z=>z.PersonId==x.PersonId).PersonName, ProjectId = x.ProjectId, - UnitId = y.UnitId, - UnitName = db.Base_Unit.First(z => z.UnitId == y.UnitId).UnitName, - WorkPostId = y.WorkPostId, - WorkPostName = db.Base_WorkPost.First(z => z.WorkPostId == y.WorkPostId).WorkPostName, + UnitId = x.UnitId, + UnitName = db.Base_Unit.First(z => z.UnitId == x.UnitId).UnitName, + WorkPostId = x.WorkPostId, + WorkPostName = db.Base_WorkPost.First(z => z.WorkPostId == x.WorkPostId).WorkPostName, IsIn = x.IsIn, IsInName = x.IsIn == true ? "进场" : "出场", ChangeTime = string.Format("{0:yyyy-MM-dd HH:mm}", x.ChangeTime), @@ -1252,7 +1291,22 @@ namespace BLL { personInOuts = personInOuts.Where(x => x.ChangeTimeD <= endTimeD); } - return personInOuts.OrderByDescending(x => x.ChangeTimeD).ToList(); + getPersonListCount = personInOuts.Count(); + if (getPersonListCount == 0) + { + return null; + } + else + { + if (pageIndex > 0) + { + return personInOuts.OrderByDescending(x => x.ChangeTimeD).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); + } + else + { + return personInOuts.ToList(); + } + } } } #endregion diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index 7c594cd6..e39adc45 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -717,6 +717,7 @@ + @@ -735,6 +736,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/BLL/HSSE/SitePerson/PersonService.cs b/SGGL/BLL/HSSE/SitePerson/PersonService.cs index ca913761..7c9c9fdf 100644 --- a/SGGL/BLL/HSSE/SitePerson/PersonService.cs +++ b/SGGL/BLL/HSSE/SitePerson/PersonService.cs @@ -333,7 +333,7 @@ namespace BLL if (!newPerson.OutTime.HasValue) { newPerson.OutTime = null; - newPerson.ExchangeTime = null; + newPerson.ExchangeTime = null; } newPerson.ExchangeTime2 = null; newPerson.RealNameUpdateTime = null; diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls index fdd124e0..5de9aa24 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls differ diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/钢结构完成情况导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/钢结构完成情况导入模板.xls index 81835bac..c7b8308f 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/钢结构完成情况导入模板.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/钢结构完成情况导入模板.xls differ diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/项目进度完成情况导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/项目进度完成情况导入模板.xls index 777f5b84..9f71b163 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/项目进度完成情况导入模板.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/项目进度完成情况导入模板.xls differ diff --git a/SGGL/FineUIPro/Reference BLL/AOP.Common.dll b/SGGL/FineUIPro/Reference BLL/AOP.Common.dll new file mode 100644 index 00000000..d654f31b Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/AOP.Common.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/AipSdk.dll b/SGGL/FineUIPro/Reference BLL/AipSdk.dll new file mode 100644 index 00000000..c39987e1 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/AipSdk.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Apache.NMS.ActiveMQ.dll b/SGGL/FineUIPro/Reference BLL/Apache.NMS.ActiveMQ.dll new file mode 100644 index 00000000..0be62858 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Apache.NMS.ActiveMQ.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Apache.NMS.ActiveMQ.xml b/SGGL/FineUIPro/Reference BLL/Apache.NMS.ActiveMQ.xml new file mode 100644 index 00000000..3e4d0f89 --- /dev/null +++ b/SGGL/FineUIPro/Reference BLL/Apache.NMS.ActiveMQ.xml @@ -0,0 +1,12307 @@ + + + + Apache.NMS.ActiveMQ + + + + + Base class for all DataStructure implementations + + + + + An OpenWire command + + + + + An OpenWire command + + + + + Represents a marshallable entity + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Clone this object and return a new instance that the caller now owns. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isMessage() query. + + + + + + The correlation ID used to correlate messages with conversations or long running business processes + + + + + The destination of the message + + + + + The time in milliseconds that this message should expire in + + + + + The message ID which is set by the provider + + + + + Whether or not this message is persistent + + + + + The Priority on this message + + + + + Returns true if this message has been redelivered to this or another consumer before being acknowledged successfully. + + + + + The destination that the consumer of this message should send replies to + + + + + The timestamp the broker added to the message + + + + + The type name of this message + + + + + Returns the number of times this message has been redelivered to other consumers without being acknowledged successfully. + + + + + The Message Group ID used to group messages together to the same consumer for the same group ID value + + + + + The Message Group Sequence counter to indicate the position in a group + + + + + Returns the ID of the producers transaction + + + + + Used when the message compression is enabled to track how many bytes + the EndianBinaryWriter actually writes to the stream before compression + so that the receiving client can read off the real bodylength from the + Message before the data is actually read. + + + + + Summary description for ActiveMQDestination. + + + + + Topic Destination object + + + + + Temporary Topic Destination object + + + + + Queue Destination object + + + + + Temporary Queue Destination object + + + + + prefix for Advisory message destinations + + + + + prefix for consumer advisory destinations + + + + + prefix for producer advisory destinations + + + + + prefix for connection advisory destinations + + + + + The default target for ordered destinations + + + + + The Default Constructor + + + + + Construct the Destination with a defined physical name; + + + + + + + Returns the advisory. + + + + + The advisory to set. + + + + + true if this is a destination for Consumer advisories + + + + + true if this is a destination for Producer advisories + + + + + true if this is a destination for Connection advisories + + + + + Returns the exclusive. + + + + + The exclusive to set. + + + + + Returns the ordered. + + + + + The ordered to set. + + + + + Returns the orderedTarget. + + + + + The orderedTarget to set. + + + + A helper method to return a descriptive string for the topic or queue + + + a descriptive string for this queue or topic + + + + + + + + + + Create a Destination + + + + + + + + Create a temporary name from the clientId + + + + + + + From a temporary destination find the clientId of the Connection that created it + + + the clientId or null if not a temporary destination + + + + + object to compare + 1 if this is less than o else 0 if they are equal or -1 if this is less than o + + + + Lets sort by name first then lets sort topics greater than queues + + another destination to compare against + 1 if this is less than o else 0 if they are equal or -1 if this is less than o + + + + + Returns the Destination type + + + + Gets the Destination Type of this Destination as a String value which is one + of {Queue,Topic,TempQueue,TempTopic}. + + + The Destination Type as a String. + + + + + + string representation of this instance + + + + + hashCode for this instance + + + + if the object passed in is equivalent, return true + + the object to compare + true if this instance and obj are equivalent + + + + + true if the destination matches multiple possible destinations + + + + Factory method to create a child destination if this destination is a composite + + + the created Destination + + + + Dictionary of name/value pairs representing option values specified + in the URI used to create this Destination. A null value is returned + if no options were specified. + + + + + Returns true if this destination represents a collection of + destinations; allowing a set of destinations to be published to or subscribed + from in one NMS operation. +

+ If this destination is a composite then you can call {@link #getChildDestinations()} + to return the list of child destinations. +

+
+ + + Summary description for ActiveMQQueue. + + + + + Method GetDestinationType + + An int + + + + Method CreateDestination + + An ActiveMQDestination + A String + + + + A Temporary Queue + + + + + A Temporary Topic + + + + + Summary description for ActiveMQTopic. + + + + + Represents an exception on the broker + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isBrokerInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isConnectionControl() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isConnectionError() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isConnectionInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isConsumerControl() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isConsumerInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isControlCommand() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isResponse() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + Summary description for DataStructureSupport. + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isDestinationInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isFlushCommand() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isKeepAliveInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isMessageAck() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isMessageDispatch() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isMessageDispatchNotification() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + Sets the value as a String + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isMessagePull() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isProducerAck() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isProducerInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isRemoveInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isRemoveSubscriptionInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isReplayCommand() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isSessionInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isShutdownInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + + Allows a Visitor to visit this command and return a response to the + command based on the command type being visited. The command will call + the proper processXXX method in the visitor. + + + + + + + Return an answer of true to the isTransactionInfo() query. + + + + + + + Return an answer of true to the IsWireFormatInfo() query. + + + + + + + Get the unique identifier that this object and its own + Marshaler share. + + + + + + + Returns a string containing the information for this DataStructure + such as its type and value of its elements. + + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + A base class with useful implementation inheritence methods + for creating marshallers of the OpenWire protocol + + + + + Converts the object to a String + + + + + Converts the object to a String + + + + + Converts the given transaction ID into a String + + + + + Creates the byte array into hexidecimal + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBlobMessage + + + + + Marshalling code for Open Wire Format for ActiveMQMessage + + + + + Marshalling code for Open Wire Format for Message + + + + + Marshalling code for Open Wire Format for BaseCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQBytesMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQDestination + + + + + Marshalling code for Open Wire Format for ActiveMQMapMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQObjectMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQStreamMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempDestination + + + + + Marshalling code for Open Wire Format for ActiveMQTempQueue + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTempTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTextMessage + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ActiveMQTopic + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for BrokerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionError + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConnectionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerControl + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ConsumerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ControlCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataArrayResponse + + + + + Marshalling code for Open Wire Format for Response + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DataResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DestinationInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for DiscoveryEvent + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ExceptionResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for FlushCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for IntegerResponse + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalQueueAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTopicAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTrace + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for JournalTransaction + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for KeepAliveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LastPartialCommand + + + + + Marshalling code for Open Wire Format for PartialCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for LocalTransactionId + + + + + Marshalling code for Open Wire Format for TransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Used to create marshallers for a specific version of the OpenWire protocol. + Each non-abstract DataStructure object has a registered Marshaller that is + created and added to the OpenWireFormat objects format collection. + + + + + Adds the Marshallers for this version of the OpenWire protocol to the + Collection of Marshallers stored in the OpenWireFormat class. + + + + + Marshalling code for Open Wire Format for MessageAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatch + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageDispatchNotification + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessageId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for MessagePull + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for NetworkBridgeFilter + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerAck + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ProducerInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for RemoveSubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ReplayCommand + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SessionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for ShutdownInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for SubscriptionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for TransactionInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for WireFormatInfo + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Marshalling code for Open Wire Format for XATransactionId + + + + + Creates an instance of the Object that this marshaller handles. + + + + + Returns the type code for the Object that this Marshaller handles.. + + + + + Represents a stream of boolean flags + + + + + Implements the OpenWire protocol. + + + + + Represents the marshalling of commands to and from an IO stream + + + + + Marshalls the given command object onto the stream + + + + + Unmarshalls the next command object from the stream + + + + + Gets the Transport that own this WireFormat instnace. + + + + + Gets the current version of the protocol that this WireFormat instance + supports + + + + + Tracks the state of a connection so a newly established transport can be + re-initialized to the state that was tracked. + + + + + + + null if the command is not state tracked. + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Composite task is one of N tasks that can be managed by a + CompositTaskRunner instance. The CompositeTaskRunner checks each + task when its wakeup method is called to determine if the Task has + any work it needs to complete, if no tasks have any pending work + then the CompositeTaskRunner can return to its sleep state until + the next time its wakeup method is called or it is shut down. + + + + + Represents a task that may take a few iterations to complete. + + + + + Performs some portion of the work that this Task object is + assigned to complete. When the task is entirely finished this + method should return false. + + + A this indicates if this Task should + be run again. + + + + + Indicates if this Task has any pending work. + + + + + A TaskRunner that dedicates a single thread to running a single Task. + + + + + Allows you to request a thread execute the associated Task. + + + + + Wakeup the TaskRunner and have it check for any pending work that + needs to be completed. If none is found it will go back to sleep + until another Wakeup call is made. + + + + + Attempt to Shutdown the TaskRunner, this method will wait indefinitely + for the TaskRunner to quite if the task runner is in a call to its Task's + run method and that never returns. + + + + + Performs a timed wait for the TaskRunner to shutdown. If the TaskRunner + is in a call to its Task's run method and that does not return before the + timeout expires this method returns and the TaskRunner may remain in the + running state. + + + A + + + + + Performs a timed wait for the TaskRunner to shutdown. If the TaskRunner + is in a call to its Task's run method and that does not return before the + timeout expires this method sends an Abort to the Task thread and return. + + + A + + + + + A TaskRunner that dedicates a single thread to running a single Task. + + + + + We Expect MANY wakeup calls on the same TaskRunner. + + + + + shut down the task + + + + + + Scheduler Service useful for running various delayed units of work. + + + + + Executes the given task periodically using a fixed-delay execution style + which prevents tasks from bunching should there be some delay such as + garbage collection or machine sleep. + + This repeating unit of work can later be cancelled using the WaitCallback + that was originally used to initiate the processing. + + + + + Executes the given task periodically using a fixed-delay execution style + which prevents tasks from bunching should there be some delay such as + garbage collection or machine sleep. + + This repeating unit of work can later be cancelled using the WaitCallback + that was originally used to initiate the processing. + + + + + Executes the given task the after delay, no reference is kept for this + task so it cannot be cancelled later. + + + + + Executes the given task the after delay, no reference is kept for this + task so it cannot be cancelled later. + + + + + Manages the thread pool for long running tasks. Long running tasks are not + always active but when they are active, they may need a few iterations of + processing for them to become idle. The manager ensures that each task is + processes but that no one task overtakes the system. This is kina like + cooperative multitasking. + + If your OS/JVM combination has a good thread model, you may want to avoid + using a thread pool to run tasks and use a DedicatedTaskRunner instead. + + + + + This class provides a wrapper around the ThreadPool mechanism in .NET + to allow for serial execution of jobs in the ThreadPool and provide + a means of shutting down the execution of jobs in a deterministic + way. + + + + + Returns true if this ThreadPoolExecutor has been shut down but has not + finished running all the tasks that have been Queue. When a ThreadPoolExecutor + is shut down it will not accept any new tasks but it will complete all tasks + that have been previously queued. + + + + + Returns true if this ThreadPoolExecutor has been shut down and has also + completed processing of all outstanding tasks in its task Queue. + + + + + Represents an asynchronous task that is executed on the ThreadPool + at some point in the future. + + + + + A facility for applications to schedule tasks for future execution in a background + thread. Tasks may be scheduled for one-time execution, or for repeated execution at + regular intervals. Unlike the normal .NET Timer this Timer allows for multiple tasks + to be scheduled in a single Timer object. + + Corresponding to each Timer object is a single background thread that is used to execute + all of the timer's tasks, sequentially. Timer tasks should complete quickly. If a timer + task takes excessive time to complete, it "hogs" the timer's task execution thread. This + can, in turn, delay the execution of subsequent tasks, which may "bunch up" and execute + in rapid succession when (and if) the offending task finally completes. + + After the last live reference to a Timer object goes away and all outstanding tasks have + completed execution, the timer's task execution thread terminates gracefully (and becomes + subject to garbage collection). However, this can take arbitrarily long to occur. By default, + the task execution thread does not run as a Background thread, so it is capable of keeping an + application from terminating. If a caller wants to terminate a timer's task execution thread + rapidly, the caller should invoke the timer's cancel method. + + If the timer's task execution thread terminates unexpectedly, any further attempt to schedule + a task on the timer will result in an IllegalStateException, as if the timer's cancel method + had been invoked. + + This class is thread-safe: multiple threads can share a single Timer object without the + need for external synchronization. + + This class does not offer real-time guarantees: it schedules tasks using the + EventWaitHandle.WaitOne(TimeSpan) method. + + + + + Terminates this timer, discarding any currently scheduled tasks. Does not interfere + with a currently executing task (if it exists). Once a timer has been terminated, + its execution thread terminates gracefully, and no more tasks may be scheduled on it. + + Note that calling this method from within the run method of a timer task that was + invoked by this timer absolutely guarantees that the ongoing task execution is the + last task execution that will ever be performed by this timer. + + This method may be called repeatedly; the second and subsequent calls have no effect. + + + + + Removes all cancelled tasks from this timer's task queue. Calling this method has + no effect on the behavior of the timer, but eliminates the references to the cancelled + tasks from the queue. If there are no external references to these tasks, they become + eligible for garbage collection. + + Most programs will have no need to call this method. It is designed for use by the + rare application that cancels a large number of tasks. Calling this method trades + time for space: the runtime of the method may be proportional to n + c log n, where + n is the number of tasks in the queue and c is the number of cancelled tasks. + + Note that it is permissible to call this method from within a a task scheduled + on this timer. + + + + + Schedules the specified WaitCallback task for execution at the specified time. If the + time is in the past, the task is scheduled for immediate execution. The method returns + a TimerTask instance that can be used to later cancel the scheduled task. + + + + + Schedules the specified WaitCallback task for execution after the specified delay. + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for execution after the specified delay. + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-delay execution, + beginning after the specified delay. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-delay execution, + beginning after the specified delay. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-delay execution, + beginning at the specified start time. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-delay execution, + beginning at the specified start time. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-rate execution, beginning + after the specified delay. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-rate execution, beginning + after the specified delay. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-rate execution, beginning + at the specified time. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified WaitCallback task for repeated fixed-rate execution, beginning + at the specified time. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + The method returns a TimerTask instance that can be used to later cancel the + scheduled task. + + + + + Schedules the specified TimerTask for execution at the specified time. If the + time is in the past. + + + + + Schedules the specified TimerTask for execution after the specified delay. + + + + + Schedules the specified TimerTask for execution after the specified delay. + + + + + Schedules the specified TimerTask for repeated fixed-delay execution, beginning + after the specified delay. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + + + + Schedules the specified TimerTask for repeated fixed-delay execution, beginning + after the specified delay. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + + + + Schedules the specified TimerTask for repeated fixed-delay execution, beginning + at the specified time. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + + + + Schedules the specified TimerTask for repeated fixed-delay execution, beginning + at the specified time. Subsequent executions take place at approximately + regular intervals separated by the specified period. + + In fixed-delay execution, each execution is scheduled relative to the actual execution + time of the previous execution. If an execution is delayed for any reason (such as + garbage collection or other background activity), subsequent executions will be delayed. + + Fixed-delay execution is appropriate for recurring activities that require "smoothness." + In other words, it is appropriate for activities where it is more important to keep the + frequency accurate in the short run than in the long run. + + + + + Schedules the specified TimerTask for repeated fixed-rate execution, beginning + after the specified delay. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + + + + Schedules the specified TimerTask for repeated fixed-rate execution, beginning + after the specified delay. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + + + + Schedules the specified TimerTask for repeated fixed-rate execution, beginning + at the specified time. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + + + + Schedules the specified TimerTask for repeated fixed-rate execution, beginning + at the specified time. Subsequent executions take place at approximately regular + intervals, separated by the specified period. + + In fixed-rate execution, each execution is scheduled relative to the scheduled execution + time of the initial execution. If an execution is delayed for any reason (such as garbage + collection or other background activity), two or more executions will occur in rapid + succession to "catch up." + + Fixed-rate execution is appropriate for recurring activities that are sensitive to + absolute time, such as ringing a chime every hour on the hour, or running scheduled + maintenance every day at a particular time. + + + + + A Task that is run in a Timer instance either once or repeatedly. + + + + + Run this Timers event loop in its own Thread. + + + + + Interface for a Logger object used to store and retrieve Recovery + Information needed to recover distributed transactions that operate + in the Microsoft Distributed Transaction Context. + + + + + The Unique Id of the Resource Manager that this logger is currently + logging recovery information for. + + + + + The Path to the location on disk where the recovery log is written + to and read from. + + + + + Indiciate that the Logger should create and sibdirs of the + given location that don't currently exist. + + + + + Attribute that decorates IRecoveryLoggerFactory implementations to allow + the Recovery Policy to find all the available factories dynamically. + + + + + Registers the service with the given name. + + + + + A process actively using a service may see it go down before the DiscoveryAgent notices + the service's failure. That process can use this method to notify the IDiscoveryAgent + of the failure so that other listeners of this IDiscoveryAgent can also be made aware + of the failure. + + + + + Gets or sets the service add event handler + + + + + Gets or sets the service remove event handler. + + + + + Overriden by the actual agent class to handle the publish of this service + if supported by the agent. + + + + + Overriden by the agent class to handle starting any agent related services + or opening resources needed for the agent. + + + + + Overriden by the agent to handle shutting down any agent created resources. + + + + + Called from the Agent background thread to allow the concrete agent implementation + to perform its discovery of new services. + + + + + Returns true if this Broker has been marked as failed and it is now time to + start a recovery attempt. + + + + + Gets or sets the keep alive interval. This interval controls the amount + of time that a service is kept before being considered idle and removed from + the list of discovered services. This value is also used to control the + period of time that this service will wait before advertising itself. + + + + + Optional interface for service type objects which support a + logical suspend and resume mode. Services that can be suspended + when not needed can reduce resource load. + + + + + Factory class interface for all DiscoveryAgent factories. Each agent factory + should define its own factory attribute so that the agents can be found dynamically + by the DiscoveryAgentFactory class. + + + + + Attribute that decorates DiscoveryAgentFactory implementations to allow + the DiscoverAgentFactory to find all the available factories dynamically. + + + + + Discovered service data event object. Used to contain information on the + services that an agent discovers and track heartbeat and other service + events used to determine if a service has failed or timed out due to a + lack of recent reporting. + + + + + Create a DiscoveryAgent Factory for the scheme. If we do not support the agent protocol, + an NMSConnectionException will be thrown. + + + + + + + Used to implement a filter on the transport layer. + + + + + Represents the logical networking transport layer. Transports implment the low + level protocol specific portion of the Communication between the Client and a Broker + such as TCP, UDP, etc. Transports make use of WireFormat objects to handle translateing + the cononical OpenWire Commands used in this client into binary wire level packets that + can be sent to the Broker or Service that the Transport connects to. + + + + + Sends a Command object on the Wire but does not wait for any response from the + receiver before returning. + + + A + + + + + Sends a Command object which requires a response from the Broker but does not + wait for the response, instead a FutureResponse object is returned that the + caller can use to wait on the Broker's response. + + + A + + + A + + + + + Sends a Command to the Broker and waits for a Response to that Command before + returning, this version waits indefinitely for a response. + + + A + + + A + + + + + Sends a Command to the Broker and waits for the given TimeSpan to expire for a + response before returning. + + + A + + + A + + + A + + + + + Allows a caller to find a specific type of Transport in the Chain of + Transports that is created. This allows a caller to find a specific + object in the Transport chain and set or get properties on that specific + instance. If the requested type isn't in the chain than Null is returned. + + + A + + + A + + + + + Updates the Uri's that this Transport is aware of and will use to + connect itself to. If the rebalance option is true this method will + terminate any current connection and reconnect to another available + Uri. + + + A + + + A + + + + + Timeout in milliseconds to wait for sending synchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Timeout in milliseconds to wait for sending asynchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Indicates if this Transport has already been disposed and can no longer + be used. + + + + + Indicates if this Transport is Fault Tolerant or not. A fault Tolerant + Transport handles low level connection errors internally allowing a client + to remain unaware of wire level disconnection and reconnection details. + + + + + Indiciates if the Transport is current Connected to is assigned URI. + + + + + The Remote Address that this transport is currently connected to. + + + + + Returns true if this Transport supports reconnections. + + + + + Returns true if this Transport can accept updated lists of connection Uri's. + + + + + Returns the IWireFormat object that this transport uses to marshal and + unmarshal Command objects. + + + + + Method Oneway + + A Command + + + + Method AsyncRequest + + A FutureResponse + A Command + + + + Method Request + + A Response + A Command + + + + Method Request with time out for Response. + + A Response + A Command + Timeout in milliseconds + + + + Method Start + + + + + Method Dispose + + + + + Property IsStarted + + + + + Timeout in milliseconds to wait for sending synchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Timeout in milliseconds to wait for sending asynchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Given a Key / Value mapping create and append a URI query value that represents the mapped + entries, return the newly updated URI that contains the value of the given URI and the + appended query value. Each entry in the query string is prefixed by the supplied + optionPrefix string. + + + + + Virtual transport create method which can be overriden by subclasses to provide + an alternate FailoverTransport implementation. All transport creation methods in + this factory calls through this method to create the ITransport instance so this + is the only method that needs to be overriden. + + + + + + + Factory method for creating a DiscoveryTransport. The Discovery Transport wraps the + given ICompositeTransport and will add and remove Transport URIs as they are discovered. + + + + + A Transport that is made reliable by being able to fail over to another + transport when a transport failure is detected. + + + + + Adds a new set of Uris to the list of Uris that this Transport can connect to. + + + A + Should the current connection be broken and a new one created. + + + A + + + + + Remove the given Uris from this Transports list of known Uris. + + + A + Should the current connection be broken and a new one created. + + + A + + + + + Gets or sets a value indicating whether to asynchronously connect to sockets + + true if [async connect]; otherwise, false. + + + + If doing an asynchronous connect, the milliseconds before timing out if no connection can be made + + The async timeout. + + + + Defines an Interface for a Command Response Builder used by the MockTransport + to answer Commands sent via the Request and AsnycRequest methods. + + + + + Given a Command, check if it requires a response and return the + appropriate Response that the Broker would send for this Command + + + + + When called the ResponseBuilder must construct all the Responses or + Asynchronous commands that would be sent to this client by the Broker + upon receipt of the passed command. + + + + + Transport used for testing, mimics the behaviour of a normal Transport and allows + messages to be sent and received + + + + + Injects a Command into the Transports inbound message queue, the Commands in the + inbound Queue are dispatched to the registered CommnadHandler instance for + processing, this simulates receiving a message from an external source, e.g. + receiving a new message from the Broker. + + + A + + + + + Timeout in milliseconds to wait for sending synchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Timeout in milliseconds to wait for sending asynchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Factory class to create the MockTransport when given on a URI as mock://XXX + + + + + Builds responses using the internal Cononical OpenWire Commands format. + + + + + An implementation of ITransport that uses sockets to communicate with the broker + + + + + Size in bytes of the receive buffer. + + + + + Size in bytes of send buffer. + + + + + Method Start + + + + + Property IsStarted + + + + + Timeout in milliseconds to wait for sending synchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Timeout in milliseconds to wait for sending asynchronous messages or commands. + Set to -1 for infinite timeout. + + + + + Indicates the name of the Server's Certificate. By default the Host name + of the remote server is used, however if this doesn't match the name of the + Server's certificate then this option can be set to override the default. + + + + + Indicates the location of the Client Certificate to use when the Broker + is configured for Client Auth (not common). The SslTransport will supply + this certificate to the SslStream via the SelectLocalCertificate method. + + + + + Password for the Client Certificate specified via configuration. + + + + + Indicates the location of the Broker Certificate to use when the Broker + is using a self-signed certificate. + + + + + Indicates if the SslTransport should ignore any errors in the supplied Broker + certificate and connect anyway, this is useful in testing with a default AMQ + broker certificate that is self signed. + + + + + Should the Inactivity Monitor be enabled on this Transport. + + + + + Size in bytes of the receive buffer. + + + + + Size in bytes of send buffer. + + + + + The time-out value, in milliseconds. The default value is 0, which indicates + an infinite time-out period. Specifying -1 also indicates an infinite time-out period. + + + + + The time-out value, in milliseconds. If you set the property with a value between 1 and 499, + the value will be changed to 500. The default value is 0, which indicates an infinite + time-out period. Specifying -1 also indicates an infinite time-out period. + + + + + Override in a subclass to create the specific type of transport that is + being implemented. + + + + + Attribute that decorates ITransportFactory implementations to allow + the TransportFactory to find all the available factories dynamically. + + + + + Handles asynchronous responses + + + + + This class make sure that the connection is still alive, + by monitoring the reception of commands from the peer of + the transport. + + + + + Constructor or the Inactivity Monitor + + + + + + Check the write to the broker + + + + + Checks if we should allow the read check(if less than 90% of the read + check time elapsed then we dont do the readcheck + + + + + + + A Transport filter that is used to log the commands sent and received. + + + + + A Transport which guards access to the next transport using a mutex. + + + + + A Transport that correlates asynchronous send/receive messages into single request/response. + + + + + Creates a normal transport. + + + the transport + + + + Create a transport factory for the scheme. If we do not support the transport protocol, + an NMSConnectionException will be thrown. + + + + + + + A Transport which negotiates the wire format + + + + + A specialized BitArray implementation that provides the smallest set + of functionality needed for Message Auditing. This implementation is + used over the .NET bit array to provide a small and more efficient + BitArray that performs only the operations needed for Message Audit. + + + + + Sets the boolean value of the given bit in the array at the specified index. + + + + + Get the boolean value contains in the BitArray at the given index + + + + + Reset all the bits to zero or false. + + + + + Reset all the bits to the given value + + + + + Returns the current length of the bits that have been + set so far in this BitArray. + + + + + Returns the actual long value containing all the set bits. + + + + + Class used to hold BitArray objects for use in Message Audits. + + + + + Test if the next message is in order. + + + + + Get the boolean value at the index + + + + + Get the BitArray for the index + + + + + Get the index of the bin from the total index + + + + + Get the offset into a bin from the total index + + + + + A FIFO based MessageDispatchChannel. + + + + + Defines an interface for a Message Channel used to dispatch incoming + Messages to a Session or MessageConsumer. The implementation controls + how the messages are dequeued from the channel, one option is for a + FIFO ordering while another might be to sort the Message's based on the + set Message Priority. + + + + Construct an IdGenerator + + + + Generate a Unique Id + + + A + + + + + Generate a unique ID - that is friendly for a URL or file system + + + A + + + + + From a generated id - return the seed (i.e. minus the count) + + + A + + + A + + + + + From a generated id - return the generator count + + + A + + + A + + + + + Does a proper compare on the ids + + + A + + + A + + + A + + + + + As we have to find the hostname as a side-affect of generating a unique + stub, we allow it's easy retrevial here + + + + + Utility class used to provide conveince methods that apply named property + settings to objects. + + + + + Sets the public properties of a target object using a string map. + This method uses .Net reflection to identify public properties of + the target object matching the keys from the passed map. + + The object whose properties will be set. + Map of key/value pairs. + + + + Sets the public properties of a target object using a string map. + This method uses .Net reflection to identify public properties of + the target object matching the keys from the passed map. + + The object whose properties will be set. + Map of key/value pairs. + Key value prefix. This is prepended to the property name + before searching for a matching key value. + + + + Implements the basic IDictionary interface and adds functionality for controlling + the maximum number of entries that can be contained in the Map. When the maximum + value is reached the oldest entry is removed so that the max size is never exceeded. + + + + + Utility class for Tracking Memory Usage with an imposed limit on the amount + available. Provides methods for objects to wait on more space to become + available if the memory limit is reached. + + + + + If no space is available then this method blocks until more becomes available. + + + + + If no space is available then this method blocks until more becomes available + or until the specified timeout expires. + + + A + + + + + Attempts to increase the amount of Memory Used, if non is available to fill + then this method blocks until more is freed. + + + A + + + + + Increase the level of Usage. + + + A + + + + + Decrease the level of Usage. + + + A + + + + + Checks if the Usage Windows has become full, is so returns true + otherwise returns false. + + + A + + + + + Simple IStoppable service stopper class. Can be used to Stop multiple + IStoppable instances without throwing an exception. Once all services + have been stopped, the first thrown exception can be fired. + + + + + Consumes Advisory Messages for Temp Destination creation on deletion so that + the connection can track valid destinations for its sessions, and session resources. + + + + + Interface that provides for a Class to provide dispatching service for + an OpenWire MessageDispatch command. + + + + + Exception thrown when the broker returns an error + + + + + Initializes a new instance of the BrokerException class with serialized data. + Throws System.ArgumentNullException if the info parameter is null. + Throws System.Runtime.Serialization.SerializationException if the class name is null or System.Exception.HResult is zero (0). + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the SerializationInfo + with information about the exception. + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + Generates a nice textual stack trace + + + + + Default Compression policy for NMS.ActiveMQ uses the built in GZipStream + to compress and decompress the message body. This is not compatible with + compression used by ActiveMQ so users should use this with caution. + + + + + Policy interface for Message Compression, the policy should return + a new Stream for compression or decompression upon request that wraps + the provided Stream instance. + + + + + Represents a connection with a message broker + + + + + Starts asynchronous message delivery of incoming messages for this connection. + Synchronous delivery is unaffected. + + + + + Temporarily stop asynchronous delivery of inbound messages for this connection. + The sending of outbound messages is unaffected. + + + + + Creates a new session to work on this connection + + + + + Creates a new session to work on this connection + + + + + Performs a synchronous request-response with the broker + + + + + + Performs a synchronous request-response with the broker for requested timeout duration. + + + + + + + + Check and ensure that the connection object is connected. If it is not + connected or is closed or closing, a ConnectionClosedException is thrown. + + + + + Handle incoming commands + + An ITransport + A Command + + + + Creates a new local transaction ID + + + + + A delegate that can receive transport level exceptions. + + + + + An asynchronous listener that is notified when a Fault tolerant connection + has been interrupted. + + + + + An asynchronous listener that is notified when a Fault tolerant connection + has been resumed. + + + + + This property indicates what version of the Protocol we are using to + communicate with the Broker, if not set we return the lowest version + number to indicate we support only the basic command set. + + + + + This property indicates whether or not async send is enabled. + + + + + This property indicates whether or not async close is enabled. + When the connection is closed, it will either send a synchronous + DisposeOf command to the broker and wait for confirmation (if true), + or it will send the DisposeOf command asynchronously. + + + + + This property indicates whether or not async sends are used for + message acknowledgement messages. Sending Acks async can improve + performance but may decrease reliability. + + + + + This property sets the acknowledgment mode for the connection. + The URI parameter connection.ackmode can be set to a string value + that maps to the enumeration value. + + + + + This property is the maximum number of bytes in memory that a producer will transmit + to a broker before waiting for acknowledgement messages from the broker that it has + accepted the previously sent messages. In other words, this how you configure the + producer flow control window that is used for async sends where the client is responsible + for managing memory usage. The default value of 0 means no flow control at the client + + + + + This property forces all messages that are sent to be sent synchronously overriding + any usage of the AsyncSend flag. This can reduce performance in some cases since the + only messages we normally send synchronously are Persistent messages not sent in a + transaction. This options guarantees that no send will return until the broker has + acknowledge receipt of the message + + + + + This property indicates whether Message's should be copied before being sent via + one of the Connection's send methods. Copying the Message object allows the user + to resuse the Object over for another send. If the message isn't copied performance + can improve but the user must not reuse the Object as it may not have been sent + before they reset its payload. + + + + + Enable or Disable the use of Compression on Message bodies. When enabled all + messages have their body compressed using the Deflate compression algorithm. + The recipient of the message must support the use of message compression as well + otherwise the receiving client will receive a message whose body appears in the + compressed form. + + + + + Indicate whether or not the resources of this Connection should support the + Message Priority value of incoming messages and dispatch them accordingly. + When disabled Message are always dispatched to Consumers in FIFO order. + + + + + synchronously or asynchronously by the broker. + + + + + The Default Client Id used if the ClientId property is not set explicity. + + + + + Get/or set the redelivery policy for this connection. + + + + + This property determines if the asynchronous message delivery of incoming + messages has been started for this connection. + + + + + Exception thrown when a connection is used that it already closed + + + + + Initializes a new instance of the ConnectionClosedException class with serialized data. + Throws System.ArgumentNullException if the info parameter is null. + Throws System.Runtime.Serialization.SerializationException if the class name is null or System.Exception.HResult is zero (0). + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + Represents a connection with a message broker + + + + + Get/or set the broker Uri. + + + + + A Delegate that is called each time a Message is dispatched to allow the client to do + any necessary transformations on the received message before it is delivered. The + ConnectionFactory sets the provided delegate instance on each Connection instance that + is created from this factory, each connection in turn passes the delegate along to each + Session it creates which then passes that along to the Consumers it creates. + + + + + A delegate that is called each time a Message is sent from this Producer which allows + the application to perform any needed transformations on the Message before it is sent. + The ConnectionFactory sets the provided delegate instance on each Connection instance that + is created from this factory, each connection in turn passes the delegate along to each + Session it creates which then passes that along to the Producers it creates. + + + + + Exception thrown when a connection is used that it has failed in some way. + + + + + Initializes a new instance of the ConnectionFailedException class with serialized data. + Throws System.ArgumentNullException if the info parameter is null. + Throws System.Runtime.Serialization.SerializationException if the class name is null or System.Exception.HResult is zero (0). + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + Implements the Connection Meta-Data feature for Apache.NMS.ActiveMQ + + + + + Exception thrown when a consumer is used that it already closed + + + + + Initializes a new instance of the ConsumerClosedException class with serialized data. + Throws System.ArgumentNullException if the info parameter is null. + Throws System.Runtime.Serialization.SerializationException if the class name is null or System.Exception.HResult is zero (0). + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + Summary description for DestinationFilter. + + + + + Exception thrown when an IO error occurs + + + + + Called before a commit or rollback is applied. + + + + + Called after a commit + + + + + Called after a transaction rollback + + + + + An object capable of receiving messages from some destination + + + + + Called from the parent Session of this Consumer to indicate that its + parent session is closing and this Consumer should close down but not + send any message to the Broker as the parent close will take care of + removing its child resources at the broker. + + + + + Used to get an enqueued message from the unconsumedMessages list. The + amount of time this method blocks is based on the timeout value. if + timeout == Timeout.Infinite then it blocks until a message is received. + if timeout == 0 then it it tries to not block at all, it returns a + message if it is available if timeout > 0 then it blocks up to timeout + amount of time. Expired messages will consumed by this method. + + + A + + + A + + + + + A Delegate that is called each time a Message is dispatched to allow the client to do + any necessary transformations on the received message before it is delivered. + + + + + An object capable of sending messages to some destination + + + + + Called from the Parent session to deactivate this Producer, when a parent + is closed all children are automatically removed from the broker so this + method circumvents the need to send a Remove command to the broker. + + + + + Extends the basic Connection class to provide a transacted Connection + instance that operates within the bounds of a .NET Scoped Transaction. + + The default Session creation methods of Connection are overriden here + to always return a TX capable session instance. + + + + + Policy class used to configure the options associated with TX + recovery. + + + + + Default provider of ISession + + + + + Private object used for synchronization, instead of public "this" + + + + + Delete a destination (Queue, Topic, Temp Queue, Temp Topic). + + + + + Ensures that a transaction is started + + + + + Prevents message from throwing an exception if a client calls Acknoweldge on + a message that is part of a transaction either being produced or consumed. The + JMS Spec indicates that users should be able to call Acknowledge with no effect + if the message is in a transaction. + + + A + + + + + Sets the maximum number of messages to keep around per consumer + in addition to the prefetch window for non-durable topics until messages + will start to be evicted for slow consumers. + Must be > 0 to enable this feature + + + + + Enables or disables whether asynchronous dispatch should be used by the broker + + + + + Enables or disables exclusive consumers when using queues. An exclusive consumer means + only one instance of a consumer is allowed to process messages on a queue to preserve order + + + + + Enables or disables retroactive mode for consumers; i.e. do they go back in time or not? + + + + + Sets the default consumer priority for consumers + + + + + A Delegate that is called each time a Message is dispatched to allow the client to do + any necessary transformations on the received message before it is delivered. + The Session instance sets the delegate on each Consumer it creates. + + + + + A delegate that is called each time a Message is sent from this Producer which allows + the application to perform any needed transformations on the Message before it is sent. + The Session instance sets the delegate on each Producer it creates. + + + + + Manually Enlists in the given Transaction. This can be used to when the + client is using the Session in Asynchronous listener mode since the Session + cannot atuomatically join in this case as there is no Ambient transaction in + the Message Dispatch thread. This also allows for clients to use the explicit + exception model when necessary. + + + + + Reports Transacted whenever there is an Ambient Transaction or the internal + TransactionContext is still involed in a .NET Transaction beyond the lifetime + of an ambient transaction (can happen during a scoped transaction disposing + without Complete being called and a Rollback is in progress.) + + + + + DTC recovery is performed once for each AppDomain per default. In case you want to perform + it again during execution of the application you can call this method before. + But ensure in this case that no connection is active anymore. + + + + + Should be called from NetTxSession when created to check if any TX + data is stored for recovery and whether the Broker has matching info + stored. If an Transaction is found that belongs to this client and is + still alive on the Broker it will be recovered, otherwise the stored + data should be cleared. + + + + + Class used to define the various limits that should be used for the Prefetch + limit on destination based on the type of Destination in use. + + + + + Exception thrown when an Request times out. + + +
+
diff --git a/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.dll b/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.dll new file mode 100644 index 00000000..3d76ad7c Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.fakesconfig b/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.fakesconfig new file mode 100644 index 00000000..f0cc8f29 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.fakesconfig differ diff --git a/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.xml b/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.xml new file mode 100644 index 00000000..8f745baa --- /dev/null +++ b/SGGL/FineUIPro/Reference BLL/Apache.NMS.Fakes.xml @@ -0,0 +1,7553 @@ + + + + Apache.NMS.Fakes + + + + Apache.NMS.IllegalStateException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 IllegalStateException.IllegalStateException() 的 填充码 + + + 设置 IllegalStateException.IllegalStateException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 IllegalStateException.IllegalStateException(String message) 的 填充码 + + + 设置 IllegalStateException.IllegalStateException(String message, Exception innerException) 的 填充码 + + + 设置 IllegalStateException.IllegalStateException(String message, String errorCode) 的 填充码 + + + 设置 IllegalStateException.IllegalStateException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.InvalidClientIDException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 InvalidClientIDException.InvalidClientIDException() 的 填充码 + + + 设置 InvalidClientIDException.InvalidClientIDException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 InvalidClientIDException.InvalidClientIDException(String message) 的 填充码 + + + 设置 InvalidClientIDException.InvalidClientIDException(String message, Exception innerException) 的 填充码 + + + 设置 InvalidClientIDException.InvalidClientIDException(String message, String errorCode) 的 填充码 + + + 设置 InvalidClientIDException.InvalidClientIDException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.InvalidDestinationException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 InvalidDestinationException.InvalidDestinationException() 的 填充码 + + + 设置 InvalidDestinationException.InvalidDestinationException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 InvalidDestinationException.InvalidDestinationException(String message) 的 填充码 + + + 设置 InvalidDestinationException.InvalidDestinationException(String message, Exception innerException) 的 填充码 + + + 设置 InvalidDestinationException.InvalidDestinationException(String message, String errorCode) 的 填充码 + + + 设置 InvalidDestinationException.InvalidDestinationException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.InvalidSelectorException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 InvalidSelectorException.InvalidSelectorException() 的 填充码 + + + 设置 InvalidSelectorException.InvalidSelectorException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 InvalidSelectorException.InvalidSelectorException(String message) 的 填充码 + + + 设置 InvalidSelectorException.InvalidSelectorException(String message, Exception innerException) 的 填充码 + + + 设置 InvalidSelectorException.InvalidSelectorException(String message, String errorCode) 的 填充码 + + + 设置 InvalidSelectorException.InvalidSelectorException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.MessageEOFException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 MessageEOFException.MessageEOFException() 的 填充码 + + + 设置 MessageEOFException.MessageEOFException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 MessageEOFException.MessageEOFException(String message) 的 填充码 + + + 设置 MessageEOFException.MessageEOFException(String message, Exception innerException) 的 填充码 + + + 设置 MessageEOFException.MessageEOFException(String message, String errorCode) 的 填充码 + + + 设置 MessageEOFException.MessageEOFException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.MessageFormatException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 MessageFormatException.MessageFormatException() 的 填充码 + + + 设置 MessageFormatException.MessageFormatException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 MessageFormatException.MessageFormatException(String message) 的 填充码 + + + 设置 MessageFormatException.MessageFormatException(String message, Exception innerException) 的 填充码 + + + 设置 MessageFormatException.MessageFormatException(String message, String errorCode) 的 填充码 + + + 设置 MessageFormatException.MessageFormatException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.MessageNotReadableException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 MessageNotReadableException.MessageNotReadableException() 的 填充码 + + + 设置 MessageNotReadableException.MessageNotReadableException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 MessageNotReadableException.MessageNotReadableException(String message) 的 填充码 + + + 设置 MessageNotReadableException.MessageNotReadableException(String message, Exception innerException) 的 填充码 + + + 设置 MessageNotReadableException.MessageNotReadableException(String message, String errorCode) 的 填充码 + + + 设置 MessageNotReadableException.MessageNotReadableException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.MessageNotWriteableException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 MessageNotWriteableException.MessageNotWriteableException() 的 填充码 + + + 设置 MessageNotWriteableException.MessageNotWriteableException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 MessageNotWriteableException.MessageNotWriteableException(String message) 的 填充码 + + + 设置 MessageNotWriteableException.MessageNotWriteableException(String message, Exception innerException) 的 填充码 + + + 设置 MessageNotWriteableException.MessageNotWriteableException(String message, String errorCode) 的 填充码 + + + 设置 MessageNotWriteableException.MessageNotWriteableException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.NMSConnectionException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 NMSConnectionException.NMSConnectionException() 的 填充码 + + + 设置 NMSConnectionException.NMSConnectionException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 NMSConnectionException.NMSConnectionException(String message) 的 填充码 + + + 设置 NMSConnectionException.NMSConnectionException(String message, Exception innerException) 的 填充码 + + + 设置 NMSConnectionException.NMSConnectionException(String message, String errorCode) 的 填充码 + + + 设置 NMSConnectionException.NMSConnectionException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.NMSConnectionFactory 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 NMSConnectionFactory.get_BrokerUri() 的 填充码 + + + 设置 NMSConnectionFactory.set_BrokerUri(Uri value) 的 填充码 + + + 设置 NMSConnectionFactory.get_ConnectionFactory() 的 填充码 + + + 设置 NMSConnectionFactory.get_ConsumerTransformer() 的 填充码 + + + 设置 NMSConnectionFactory.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 填充码 + + + 设置 NMSConnectionFactory.CreateConnection() 的 填充码 + + + 设置 NMSConnectionFactory.CreateConnection(String userName, String password) 的 填充码 + + + 设置 NMSConnectionFactory.get_ProducerTransformer() 的 填充码 + + + 设置 NMSConnectionFactory.set_ProducerTransformer(ProducerTransformerDelegate value) 的 填充码 + + + 设置 NMSConnectionFactory.get_RedeliveryPolicy() 的 填充码 + + + 设置 NMSConnectionFactory.set_RedeliveryPolicy(IRedeliveryPolicy value) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 NMSConnectionFactory.get_BrokerUri() 的 填充码 + + + 设置 NMSConnectionFactory.set_BrokerUri(Uri value) 的 填充码 + + + 设置 NMSConnectionFactory.get_ConnectionFactory() 的 填充码 + + + 设置 NMSConnectionFactory.NMSConnectionFactory(String providerURI, Object[] constructorParams) 的 填充码 + + + 设置 NMSConnectionFactory.NMSConnectionFactory(Uri uriProvider, Object[] constructorParams) 的 填充码 + + + 设置 NMSConnectionFactory.get_ConsumerTransformer() 的 填充码 + + + 设置 NMSConnectionFactory.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 填充码 + + + 设置 NMSConnectionFactory.CreateConnection() 的 填充码 + + + 设置 NMSConnectionFactory.CreateConnectionFactory(Uri uriProvider, Object[] constructorParams) 的 填充码 + + + 设置 NMSConnectionFactory.CreateConnection(String userName, String password) 的 填充码 + + + 设置 NMSConnectionFactory.GetConfigSearchPaths() 的 填充码 + + + 设置 NMSConnectionFactory.GetTypeForScheme(String scheme) 的 填充码 + + + 设置 NMSConnectionFactory.LookupConnectionFactoryInfo(String[] paths, String scheme, String& assemblyFileName, String& factoryClassName) 的 填充码 + + + 设置 NMSConnectionFactory.MakeParameterArray(Object firstParam, Object[] varParams) 的 填充码 + + + 设置 NMSConnectionFactory.get_ProducerTransformer() 的 填充码 + + + 设置 NMSConnectionFactory.set_ProducerTransformer(ProducerTransformerDelegate value) 的 填充码 + + + 设置 NMSConnectionFactory.get_RedeliveryPolicy() 的 填充码 + + + 设置 NMSConnectionFactory.set_RedeliveryPolicy(IRedeliveryPolicy value) 的 填充码 + + + 设置 NMSConnectionFactory.NMSConnectionFactory() 的 填充码 + + + Apache.NMS.NMSConstants 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 NMSConstants.NMSConstants() 的 填充码 + + + 设置 NMSConstants.NMSConstants() 的 填充码 + + + Apache.NMS.NMSException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 NMSException.get_ErrorCode() 的 填充码 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 NMSException.NMSException() 的 填充码 + + + 设置 NMSException.NMSException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 NMSException.NMSException(String message) 的 填充码 + + + 设置 NMSException.NMSException(String message, Exception innerException) 的 填充码 + + + 设置 NMSException.NMSException(String message, String errorCode) 的 填充码 + + + 设置 NMSException.NMSException(String message, String errorCode, Exception innerException) 的 填充码 + + + 设置 NMSException.get_ErrorCode() 的 填充码 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 填充码 + + + Apache.NMS.NMSSecurityException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 NMSSecurityException.NMSSecurityException() 的 填充码 + + + 设置 NMSSecurityException.NMSSecurityException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 NMSSecurityException.NMSSecurityException(String message) 的 填充码 + + + 设置 NMSSecurityException.NMSSecurityException(String message, Exception innerException) 的 填充码 + + + 设置 NMSSecurityException.NMSSecurityException(String message, String errorCode) 的 填充码 + + + 设置 NMSSecurityException.NMSSecurityException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.ProviderFactoryInfo 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 ProviderFactoryInfo.ProviderFactoryInfo(String aFileName, String fClassName) 的 填充码 + + + Apache.NMS.ResourceAllocationException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 ResourceAllocationException.ResourceAllocationException() 的 填充码 + + + 设置 ResourceAllocationException.ResourceAllocationException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 ResourceAllocationException.ResourceAllocationException(String message) 的 填充码 + + + 设置 ResourceAllocationException.ResourceAllocationException(String message, Exception innerException) 的 填充码 + + + 设置 ResourceAllocationException.ResourceAllocationException(String message, String errorCode) 的 填充码 + + + 设置 ResourceAllocationException.ResourceAllocationException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.Tracer 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 Tracer.Tracer() 的 填充码 + + + 设置 Tracer.DebugFormat(String format, Object[] args) 的 填充码 + + + 设置 Tracer.Debug(Object message) 的 填充码 + + + 设置 Tracer.ErrorFormat(String format, Object[] args) 的 填充码 + + + 设置 Tracer.Error(Object message) 的 填充码 + + + 设置 Tracer.FatalFormat(String format, Object[] args) 的 填充码 + + + 设置 Tracer.Fatal(Object message) 的 填充码 + + + 设置 Tracer.InfoFormat(String format, Object[] args) 的 填充码 + + + 设置 Tracer.Info(Object message) 的 填充码 + + + 设置 Tracer.get_IsDebugEnabled() 的 填充码 + + + 设置 Tracer.get_IsErrorEnabled() 的 填充码 + + + 设置 Tracer.get_IsFatalEnabled() 的 填充码 + + + 设置 Tracer.get_IsInfoEnabled() 的 填充码 + + + 设置 Tracer.get_IsWarnEnabled() 的 填充码 + + + 设置 Tracer.Tracer() 的 填充码 + + + 设置 Tracer.get_Trace() 的 填充码 + + + 设置 Tracer.set_Trace(ITrace value) 的 填充码 + + + 设置 Tracer.WarnFormat(String format, Object[] args) 的 填充码 + + + 设置 Tracer.Warn(Object message) 的 填充码 + + + Apache.NMS.TransactionInProgressException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 TransactionInProgressException.TransactionInProgressException() 的 填充码 + + + 设置 TransactionInProgressException.TransactionInProgressException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 TransactionInProgressException.TransactionInProgressException(String message) 的 填充码 + + + 设置 TransactionInProgressException.TransactionInProgressException(String message, Exception innerException) 的 填充码 + + + 设置 TransactionInProgressException.TransactionInProgressException(String message, String errorCode) 的 填充码 + + + 设置 TransactionInProgressException.TransactionInProgressException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.TransactionRolledBackException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 TransactionRolledBackException.TransactionRolledBackException() 的 填充码 + + + 设置 TransactionRolledBackException.TransactionRolledBackException(SerializationInfo info, StreamingContext context) 的 填充码 + + + 设置 TransactionRolledBackException.TransactionRolledBackException(String message) 的 填充码 + + + 设置 TransactionRolledBackException.TransactionRolledBackException(String message, Exception innerException) 的 填充码 + + + 设置 TransactionRolledBackException.TransactionRolledBackException(String message, String errorCode) 的 填充码 + + + 设置 TransactionRolledBackException.TransactionRolledBackException(String message, String errorCode, Exception innerException) 的 填充码 + + + Apache.NMS.IBytesMessage 的存根类型 + + + 初始化 type StubIBytesMessage 的新实例 + + + 设置 IMessage.Acknowledge() 的 stub + + + 设置 IBytesMessage.ReadBoolean() 的 存根 + + + 设置 IBytesMessage.ReadByte() 的 存根 + + + 设置 IBytesMessage.ReadBytes(Byte[] value) 的 存根 + + + 设置 IBytesMessage.ReadBytes(Byte[] value, Int32 length) 的 存根 + + + 设置 IBytesMessage.ReadChar() 的 存根 + + + 设置 IBytesMessage.ReadDouble() 的 存根 + + + 设置 IBytesMessage.ReadInt16() 的 存根 + + + 设置 IBytesMessage.ReadInt32() 的 存根 + + + 设置 IBytesMessage.ReadInt64() 的 存根 + + + 设置 IBytesMessage.ReadSingle() 的 存根 + + + 设置 IBytesMessage.ReadString() 的 存根 + + + 设置 IBytesMessage.Reset() 的 存根 + + + 设置 IBytesMessage.WriteBoolean(Boolean value) 的 存根 + + + 设置 IBytesMessage.WriteByte(Byte value) 的 存根 + + + 设置 IBytesMessage.WriteBytes(Byte[] value) 的 存根 + + + 设置 IBytesMessage.WriteBytes(Byte[] value, Int32 offset, Int32 length) 的 存根 + + + 设置 IBytesMessage.WriteChar(Char value) 的 存根 + + + 设置 IBytesMessage.WriteDouble(Double value) 的 存根 + + + 设置 IBytesMessage.WriteInt16(Int16 value) 的 存根 + + + 设置 IBytesMessage.WriteInt32(Int32 value) 的 存根 + + + 设置 IBytesMessage.WriteInt64(Int64 value) 的 存根 + + + 设置 IBytesMessage.WriteObject(Object value) 的 存根 + + + 设置 IBytesMessage.WriteSingle(Single value) 的 存根 + + + 设置 IBytesMessage.WriteString(String value) 的 存根 + + + 设置 IMessage.Acknowledge() 的 存根 + + + 设置 IMessage.ClearBody() 的 存根 + + + 设置 IMessage.ClearProperties() 的 存根 + + + 附加委托以将 StubIBytesMessage.Content 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSCorrelationID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSDeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSDestination 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSMessageId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSPriority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSRedelivered 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSReplyTo 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSTimeToLive 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIBytesMessage.NMSType 作为具有支持字段的属性进行模拟。 + + + 设置 IBytesMessage.get_BodyLength() 的 stub + + + 设置 IBytesMessage.get_BodyLength() 的 stub + + + 设置 IMessage.ClearBody() 的 stub + + + 设置 IMessage.ClearProperties() 的 stub + + + 设置 IBytesMessage.get_Content() 的 stub + + + 设置 IBytesMessage.get_Content() 的 stub + + + 设置 IBytesMessage.set_Content(Byte[] value) 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.set_NMSCorrelationID(String value) 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.set_NMSDeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.set_NMSDestination(IDestination value) 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.set_NMSMessageId(String value) 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.set_NMSPriority(MsgPriority value) 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.set_NMSRedelivered(Boolean value) 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.set_NMSReplyTo(IDestination value) 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.set_NMSTimeToLive(TimeSpan value) 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.set_NMSTimestamp(DateTime value) 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.set_NMSType(String value) 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IBytesMessage.ReadBoolean() 的 stub + + + 设置 IBytesMessage.ReadByte() 的 stub + + + 设置 IBytesMessage.ReadBytes(Byte[] value) 的 stub + + + 设置 IBytesMessage.ReadBytes(Byte[] value, Int32 length) 的 stub + + + 设置 IBytesMessage.ReadChar() 的 stub + + + 设置 IBytesMessage.ReadDouble() 的 stub + + + 设置 IBytesMessage.ReadInt16() 的 stub + + + 设置 IBytesMessage.ReadInt32() 的 stub + + + 设置 IBytesMessage.ReadInt64() 的 stub + + + 设置 IBytesMessage.ReadSingle() 的 stub + + + 设置 IBytesMessage.ReadString() 的 stub + + + 设置 IBytesMessage.Reset() 的 stub + + + 设置 IBytesMessage.WriteBoolean(Boolean value) 的 stub + + + 设置 IBytesMessage.WriteByte(Byte value) 的 stub + + + 设置 IBytesMessage.WriteBytes(Byte[] value) 的 stub + + + 设置 IBytesMessage.WriteBytes(Byte[] value, Int32 offset, Int32 length) 的 stub + + + 设置 IBytesMessage.WriteChar(Char value) 的 stub + + + 设置 IBytesMessage.WriteDouble(Double value) 的 stub + + + 设置 IBytesMessage.WriteInt16(Int16 value) 的 stub + + + 设置 IBytesMessage.WriteInt32(Int32 value) 的 stub + + + 设置 IBytesMessage.WriteInt64(Int64 value) 的 stub + + + 设置 IBytesMessage.WriteObject(Object value) 的 stub + + + 设置 IBytesMessage.WriteSingle(Single value) 的 stub + + + 设置 IBytesMessage.WriteString(String value) 的 stub + + + Apache.NMS.IConnection 的存根类型 + + + 初始化 type StubIConnection 的新实例 + + + 设置 IConnection.get_AcknowledgementMode() 的 stub + + + 设置 IConnection.get_AcknowledgementMode() 的 stub + + + 设置 IConnection.set_AcknowledgementMode(AcknowledgementMode value) 的 stub + + + 设置 IConnection.Close() 的 存根 + + + 设置 IConnection.CreateSession() 的 存根 + + + 设置 IConnection.CreateSession(AcknowledgementMode acknowledgementMode) 的 存根 + + + 设置 IConnection.PurgeTempDestinations() 的 存根 + + + 设置 IStartable.Start() 的 存根 + + + 设置 IStoppable.Stop() 的 存根 + + + 附加委托以将 StubIConnection.AcknowledgementMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnection.ClientId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnection.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnection.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnection.RedeliveryPolicy 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnection.RequestTimeout 作为具有支持字段的属性进行模拟。 + + + 设置 IConnection.get_ClientId() 的 stub + + + 设置 IConnection.get_ClientId() 的 stub + + + 设置 IConnection.set_ClientId(String value) 的 stub + + + 设置 IConnection.Close() 的 stub + + + 设置 IConnection.get_ConsumerTransformer() 的 stub + + + 设置 IConnection.get_ConsumerTransformer() 的 stub + + + 设置 IConnection.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 IConnection.CreateSession() 的 stub + + + 设置 IConnection.CreateSession(AcknowledgementMode acknowledgementMode) 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IStartable.get_IsStarted() 的 stub + + + 设置 IStartable.get_IsStarted() 的 stub + + + 设置 IConnection.get_MetaData() 的 stub + + + 设置 IConnection.get_MetaData() 的 stub + + + 设置 IConnection.get_ProducerTransformer() 的 stub + + + 设置 IConnection.get_ProducerTransformer() 的 stub + + + 设置 IConnection.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 IConnection.PurgeTempDestinations() 的 stub + + + 设置 IConnection.get_RedeliveryPolicy() 的 stub + + + 设置 IConnection.get_RedeliveryPolicy() 的 stub + + + 设置 IConnection.set_RedeliveryPolicy(IRedeliveryPolicy value) 的 stub + + + 设置 IConnection.get_RequestTimeout() 的 stub + + + 设置 IConnection.get_RequestTimeout() 的 stub + + + 设置 IConnection.set_RequestTimeout(TimeSpan value) 的 stub + + + 设置 IStartable.Start() 的 stub + + + 设置 IStoppable.Stop() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.IConnectionFactory 的存根类型 + + + 初始化 type StubIConnectionFactory 的新实例 + + + 设置 IConnectionFactory.CreateConnection() 的 存根 + + + 设置 IConnectionFactory.CreateConnection(String userName, String password) 的 存根 + + + 附加委托以将 StubIConnectionFactory.BrokerUri 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnectionFactory.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnectionFactory.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIConnectionFactory.RedeliveryPolicy 作为具有支持字段的属性进行模拟。 + + + 设置 IConnectionFactory.get_BrokerUri() 的 stub + + + 设置 IConnectionFactory.get_BrokerUri() 的 stub + + + 设置 IConnectionFactory.set_BrokerUri(Uri value) 的 stub + + + 设置 IConnectionFactory.get_ConsumerTransformer() 的 stub + + + 设置 IConnectionFactory.get_ConsumerTransformer() 的 stub + + + 设置 IConnectionFactory.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 IConnectionFactory.CreateConnection() 的 stub + + + 设置 IConnectionFactory.CreateConnection(String userName, String password) 的 stub + + + 设置 IConnectionFactory.get_ProducerTransformer() 的 stub + + + 设置 IConnectionFactory.get_ProducerTransformer() 的 stub + + + 设置 IConnectionFactory.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 IConnectionFactory.get_RedeliveryPolicy() 的 stub + + + 设置 IConnectionFactory.get_RedeliveryPolicy() 的 stub + + + 设置 IConnectionFactory.set_RedeliveryPolicy(IRedeliveryPolicy value) 的 stub + + + Apache.NMS.IConnectionMetaData 的存根类型 + + + 初始化 type StubIConnectionMetaData 的新实例 + + + 设置 IConnectionMetaData.get_NMSMajorVersion() 的 stub + + + 设置 IConnectionMetaData.get_NMSMajorVersion() 的 stub + + + 设置 IConnectionMetaData.get_NMSMinorVersion() 的 stub + + + 设置 IConnectionMetaData.get_NMSMinorVersion() 的 stub + + + 设置 IConnectionMetaData.get_NMSProviderName() 的 stub + + + 设置 IConnectionMetaData.get_NMSProviderName() 的 stub + + + 设置 IConnectionMetaData.get_NMSVersion() 的 stub + + + 设置 IConnectionMetaData.get_NMSVersion() 的 stub + + + 设置 IConnectionMetaData.get_NMSXPropertyNames() 的 stub + + + 设置 IConnectionMetaData.get_NMSXPropertyNames() 的 stub + + + 设置 IConnectionMetaData.get_ProviderMajorVersion() 的 stub + + + 设置 IConnectionMetaData.get_ProviderMajorVersion() 的 stub + + + 设置 IConnectionMetaData.get_ProviderMinorVersion() 的 stub + + + 设置 IConnectionMetaData.get_ProviderMinorVersion() 的 stub + + + 设置 IConnectionMetaData.get_ProviderVersion() 的 stub + + + 设置 IConnectionMetaData.get_ProviderVersion() 的 stub + + + Apache.NMS.IDestination 的存根类型 + + + 初始化 type StubIDestination 的新实例 + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.IMapMessage 的存根类型 + + + 初始化 type StubIMapMessage 的新实例 + + + 设置 IMessage.Acknowledge() 的 stub + + + 设置 IMessage.Acknowledge() 的 存根 + + + 设置 IMessage.ClearBody() 的 存根 + + + 设置 IMessage.ClearProperties() 的 存根 + + + 附加委托以将 StubIMapMessage.NMSCorrelationID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSDeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSDestination 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSMessageId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSPriority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSRedelivered 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSReplyTo 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSTimeToLive 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMapMessage.NMSType 作为具有支持字段的属性进行模拟。 + + + 设置 IMapMessage.get_Body() 的 stub + + + 设置 IMapMessage.get_Body() 的 stub + + + 设置 IMessage.ClearBody() 的 stub + + + 设置 IMessage.ClearProperties() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.set_NMSCorrelationID(String value) 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.set_NMSDeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.set_NMSDestination(IDestination value) 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.set_NMSMessageId(String value) 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.set_NMSPriority(MsgPriority value) 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.set_NMSRedelivered(Boolean value) 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.set_NMSReplyTo(IDestination value) 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.set_NMSTimeToLive(TimeSpan value) 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.set_NMSTimestamp(DateTime value) 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.set_NMSType(String value) 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + Apache.NMS.IMessage 的存根类型 + + + 初始化 type StubIMessage 的新实例 + + + 设置 IMessage.Acknowledge() 的 stub + + + 设置 IMessage.Acknowledge() 的 存根 + + + 设置 IMessage.ClearBody() 的 存根 + + + 设置 IMessage.ClearProperties() 的 存根 + + + 附加委托以将 StubIMessage.NMSCorrelationID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSDeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSDestination 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSMessageId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSPriority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSRedelivered 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSReplyTo 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSTimeToLive 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessage.NMSType 作为具有支持字段的属性进行模拟。 + + + 设置 IMessage.ClearBody() 的 stub + + + 设置 IMessage.ClearProperties() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.set_NMSCorrelationID(String value) 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.set_NMSDeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.set_NMSDestination(IDestination value) 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.set_NMSMessageId(String value) 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.set_NMSPriority(MsgPriority value) 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.set_NMSRedelivered(Boolean value) 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.set_NMSReplyTo(IDestination value) 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.set_NMSTimeToLive(TimeSpan value) 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.set_NMSTimestamp(DateTime value) 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.set_NMSType(String value) 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + Apache.NMS.IMessageConsumer 的存根类型 + + + 初始化 type StubIMessageConsumer 的新实例 + + + 设置 IMessageConsumer.Close() 的 存根 + + + 设置 IMessageConsumer.Receive() 的 存根 + + + 设置 IMessageConsumer.Receive(TimeSpan timeout) 的 存根 + + + 设置 IMessageConsumer.ReceiveNoWait() 的 存根 + + + 附加委托以将 StubIMessageConsumer.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 设置 IMessageConsumer.Close() 的 stub + + + 设置 IMessageConsumer.get_ConsumerTransformer() 的 stub + + + 设置 IMessageConsumer.get_ConsumerTransformer() 的 stub + + + 设置 IMessageConsumer.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IMessageConsumer.Receive() 的 stub + + + 设置 IMessageConsumer.ReceiveNoWait() 的 stub + + + 设置 IMessageConsumer.Receive(TimeSpan timeout) 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.IMessageProducer 的存根类型 + + + 初始化 type StubIMessageProducer 的新实例 + + + 设置 IMessageProducer.Close() 的 存根 + + + 设置 IMessageProducer.CreateBytesMessage() 的 存根 + + + 设置 IMessageProducer.CreateBytesMessage(Byte[] body) 的 存根 + + + 设置 IMessageProducer.CreateMapMessage() 的 存根 + + + 设置 IMessageProducer.CreateMessage() 的 存根 + + + 设置 IMessageProducer.CreateObjectMessage(Object body) 的 存根 + + + 设置 IMessageProducer.CreateStreamMessage() 的 存根 + + + 设置 IMessageProducer.CreateTextMessage() 的 存根 + + + 设置 IMessageProducer.CreateTextMessage(String text) 的 存根 + + + 设置 IMessageProducer.Send(IMessage message) 的 存根 + + + 设置 IMessageProducer.Send(IDestination destination, IMessage message) 的 存根 + + + 设置 IMessageProducer.Send(IMessage message, MsgDeliveryMode deliveryMode, MsgPriority priority, TimeSpan timeToLive) 的 存根 + + + 设置 IMessageProducer.Send(IDestination destination, IMessage message, MsgDeliveryMode deliveryMode, MsgPriority priority, TimeSpan timeToLive) 的 存根 + + + 附加委托以将 StubIMessageProducer.DeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessageProducer.DisableMessageID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessageProducer.DisableMessageTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessageProducer.Priority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessageProducer.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessageProducer.RequestTimeout 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIMessageProducer.TimeToLive 作为具有支持字段的属性进行模拟。 + + + 设置 IMessageProducer.Close() 的 stub + + + 设置 IMessageProducer.CreateBytesMessage() 的 stub + + + 设置 IMessageProducer.CreateBytesMessage(Byte[] body) 的 stub + + + 设置 IMessageProducer.CreateMapMessage() 的 stub + + + 设置 IMessageProducer.CreateMessage() 的 stub + + + 设置 IMessageProducer.CreateObjectMessage(Object body) 的 stub + + + 设置 IMessageProducer.CreateStreamMessage() 的 stub + + + 设置 IMessageProducer.CreateTextMessage() 的 stub + + + 设置 IMessageProducer.CreateTextMessage(String text) 的 stub + + + 设置 IMessageProducer.get_DeliveryMode() 的 stub + + + 设置 IMessageProducer.get_DeliveryMode() 的 stub + + + 设置 IMessageProducer.set_DeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessageProducer.get_DisableMessageID() 的 stub + + + 设置 IMessageProducer.get_DisableMessageID() 的 stub + + + 设置 IMessageProducer.set_DisableMessageID(Boolean value) 的 stub + + + 设置 IMessageProducer.get_DisableMessageTimestamp() 的 stub + + + 设置 IMessageProducer.get_DisableMessageTimestamp() 的 stub + + + 设置 IMessageProducer.set_DisableMessageTimestamp(Boolean value) 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IMessageProducer.get_Priority() 的 stub + + + 设置 IMessageProducer.get_Priority() 的 stub + + + 设置 IMessageProducer.set_Priority(MsgPriority value) 的 stub + + + 设置 IMessageProducer.get_ProducerTransformer() 的 stub + + + 设置 IMessageProducer.get_ProducerTransformer() 的 stub + + + 设置 IMessageProducer.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 IMessageProducer.get_RequestTimeout() 的 stub + + + 设置 IMessageProducer.get_RequestTimeout() 的 stub + + + 设置 IMessageProducer.set_RequestTimeout(TimeSpan value) 的 stub + + + 设置 IMessageProducer.Send(IDestination destination, IMessage message) 的 stub + + + 设置 IMessageProducer.Send(IDestination destination, IMessage message, MsgDeliveryMode deliveryMode, MsgPriority priority, TimeSpan timeToLive) 的 stub + + + 设置 IMessageProducer.Send(IMessage message) 的 stub + + + 设置 IMessageProducer.Send(IMessage message, MsgDeliveryMode deliveryMode, MsgPriority priority, TimeSpan timeToLive) 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + 设置 IMessageProducer.get_TimeToLive() 的 stub + + + 设置 IMessageProducer.get_TimeToLive() 的 stub + + + 设置 IMessageProducer.set_TimeToLive(TimeSpan value) 的 stub + + + Apache.NMS.INetTxConnection 的存根类型 + + + 初始化 type StubINetTxConnection 的新实例 + + + 设置 IConnection.get_AcknowledgementMode() 的 stub + + + 设置 IConnection.get_AcknowledgementMode() 的 stub + + + 设置 IConnection.set_AcknowledgementMode(AcknowledgementMode value) 的 stub + + + 设置 IConnection.Close() 的 存根 + + + 设置 IConnection.CreateSession() 的 存根 + + + 设置 IConnection.CreateSession(AcknowledgementMode acknowledgementMode) 的 存根 + + + 设置 IConnection.PurgeTempDestinations() 的 存根 + + + 设置 INetTxConnection.CreateNetTxSession() 的 存根 + + + 设置 INetTxConnection.CreateNetTxSession(Boolean enlistsNativeMsDtcResource) 的 存根 + + + 设置 INetTxConnection.CreateNetTxSession(Transaction tx) 的 存根 + + + 设置 INetTxConnection.CreateNetTxSession(Transaction tx, Boolean enlistsNativeMsDtcResource) 的 存根 + + + 设置 IStartable.Start() 的 存根 + + + 设置 IStoppable.Stop() 的 存根 + + + 附加委托以将 StubINetTxConnection.AcknowledgementMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnection.ClientId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnection.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnection.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnection.RedeliveryPolicy 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnection.RequestTimeout 作为具有支持字段的属性进行模拟。 + + + 设置 IConnection.get_ClientId() 的 stub + + + 设置 IConnection.get_ClientId() 的 stub + + + 设置 IConnection.set_ClientId(String value) 的 stub + + + 设置 IConnection.Close() 的 stub + + + 设置 IConnection.get_ConsumerTransformer() 的 stub + + + 设置 IConnection.get_ConsumerTransformer() 的 stub + + + 设置 IConnection.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 INetTxConnection.CreateNetTxSession() 的 stub + + + 设置 INetTxConnection.CreateNetTxSession(Boolean enlistsNativeMsDtcResource) 的 stub + + + 设置 INetTxConnection.CreateNetTxSession(Transaction tx) 的 stub + + + 设置 INetTxConnection.CreateNetTxSession(Transaction tx, Boolean enlistsNativeMsDtcResource) 的 stub + + + 设置 IConnection.CreateSession() 的 stub + + + 设置 IConnection.CreateSession(AcknowledgementMode acknowledgementMode) 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IStartable.get_IsStarted() 的 stub + + + 设置 IStartable.get_IsStarted() 的 stub + + + 设置 IConnection.get_MetaData() 的 stub + + + 设置 IConnection.get_MetaData() 的 stub + + + 设置 IConnection.get_ProducerTransformer() 的 stub + + + 设置 IConnection.get_ProducerTransformer() 的 stub + + + 设置 IConnection.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 IConnection.PurgeTempDestinations() 的 stub + + + 设置 IConnection.get_RedeliveryPolicy() 的 stub + + + 设置 IConnection.get_RedeliveryPolicy() 的 stub + + + 设置 IConnection.set_RedeliveryPolicy(IRedeliveryPolicy value) 的 stub + + + 设置 IConnection.get_RequestTimeout() 的 stub + + + 设置 IConnection.get_RequestTimeout() 的 stub + + + 设置 IConnection.set_RequestTimeout(TimeSpan value) 的 stub + + + 设置 IStartable.Start() 的 stub + + + 设置 IStoppable.Stop() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.INetTxConnectionFactory 的存根类型 + + + 初始化 type StubINetTxConnectionFactory 的新实例 + + + 设置 IConnectionFactory.CreateConnection() 的 存根 + + + 设置 IConnectionFactory.CreateConnection(String userName, String password) 的 存根 + + + 设置 INetTxConnectionFactory.CreateNetTxConnection() 的 存根 + + + 设置 INetTxConnectionFactory.CreateNetTxConnection(String userName, String password) 的 存根 + + + 附加委托以将 StubINetTxConnectionFactory.BrokerUri 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnectionFactory.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnectionFactory.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxConnectionFactory.RedeliveryPolicy 作为具有支持字段的属性进行模拟。 + + + 设置 IConnectionFactory.get_BrokerUri() 的 stub + + + 设置 IConnectionFactory.get_BrokerUri() 的 stub + + + 设置 IConnectionFactory.set_BrokerUri(Uri value) 的 stub + + + 设置 IConnectionFactory.get_ConsumerTransformer() 的 stub + + + 设置 IConnectionFactory.get_ConsumerTransformer() 的 stub + + + 设置 IConnectionFactory.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 IConnectionFactory.CreateConnection() 的 stub + + + 设置 IConnectionFactory.CreateConnection(String userName, String password) 的 stub + + + 设置 INetTxConnectionFactory.CreateNetTxConnection() 的 stub + + + 设置 INetTxConnectionFactory.CreateNetTxConnection(String userName, String password) 的 stub + + + 设置 IConnectionFactory.get_ProducerTransformer() 的 stub + + + 设置 IConnectionFactory.get_ProducerTransformer() 的 stub + + + 设置 IConnectionFactory.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 IConnectionFactory.get_RedeliveryPolicy() 的 stub + + + 设置 IConnectionFactory.get_RedeliveryPolicy() 的 stub + + + 设置 IConnectionFactory.set_RedeliveryPolicy(IRedeliveryPolicy value) 的 stub + + + Apache.NMS.INetTxSession 的存根类型 + + + 初始化 type StubINetTxSession 的新实例 + + + 设置 ISession.get_AcknowledgementMode() 的 stub + + + 设置 ISession.get_AcknowledgementMode() 的 stub + + + 设置 INetTxSession.Enlist(Transaction tx) 的 存根 + + + 设置 ISession.Close() 的 存根 + + + 设置 ISession.Commit() 的 存根 + + + 设置 ISession.CreateBrowser(IQueue queue) 的 存根 + + + 设置 ISession.CreateBrowser(IQueue queue, String selector) 的 存根 + + + 设置 ISession.CreateBytesMessage() 的 存根 + + + 设置 ISession.CreateBytesMessage(Byte[] body) 的 存根 + + + 设置 ISession.CreateConsumer(IDestination destination) 的 存根 + + + 设置 ISession.CreateConsumer(IDestination destination, String selector) 的 存根 + + + 设置 ISession.CreateConsumer(IDestination destination, String selector, Boolean noLocal) 的 存根 + + + 设置 ISession.CreateDurableConsumer(ITopic destination, String name, String selector, Boolean noLocal) 的 存根 + + + 设置 ISession.CreateMapMessage() 的 存根 + + + 设置 ISession.CreateMessage() 的 存根 + + + 设置 ISession.CreateObjectMessage(Object body) 的 存根 + + + 设置 ISession.CreateProducer() 的 存根 + + + 设置 ISession.CreateProducer(IDestination destination) 的 存根 + + + 设置 ISession.CreateStreamMessage() 的 存根 + + + 设置 ISession.CreateTemporaryQueue() 的 存根 + + + 设置 ISession.CreateTemporaryTopic() 的 存根 + + + 设置 ISession.CreateTextMessage() 的 存根 + + + 设置 ISession.CreateTextMessage(String text) 的 存根 + + + 设置 ISession.DeleteDestination(IDestination destination) 的 存根 + + + 设置 ISession.DeleteDurableConsumer(String name) 的 存根 + + + 设置 ISession.GetQueue(String name) 的 存根 + + + 设置 ISession.GetTopic(String name) 的 存根 + + + 设置 ISession.Recover() 的 存根 + + + 设置 ISession.Rollback() 的 存根 + + + 附加委托以将 StubINetTxSession.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxSession.EnlistsMsDtcNativeResource 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxSession.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubINetTxSession.RequestTimeout 作为具有支持字段的属性进行模拟。 + + + 设置 ISession.Close() 的 stub + + + 设置 ISession.Commit() 的 stub + + + 设置 ISession.get_ConsumerTransformer() 的 stub + + + 设置 ISession.get_ConsumerTransformer() 的 stub + + + 设置 ISession.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 ISession.CreateBrowser(IQueue queue) 的 stub + + + 设置 ISession.CreateBrowser(IQueue queue, String selector) 的 stub + + + 设置 ISession.CreateBytesMessage() 的 stub + + + 设置 ISession.CreateBytesMessage(Byte[] body) 的 stub + + + 设置 ISession.CreateConsumer(IDestination destination) 的 stub + + + 设置 ISession.CreateConsumer(IDestination destination, String selector) 的 stub + + + 设置 ISession.CreateConsumer(IDestination destination, String selector, Boolean noLocal) 的 stub + + + 设置 ISession.CreateDurableConsumer(ITopic destination, String name, String selector, Boolean noLocal) 的 stub + + + 设置 ISession.CreateMapMessage() 的 stub + + + 设置 ISession.CreateMessage() 的 stub + + + 设置 ISession.CreateObjectMessage(Object body) 的 stub + + + 设置 ISession.CreateProducer() 的 stub + + + 设置 ISession.CreateProducer(IDestination destination) 的 stub + + + 设置 ISession.CreateStreamMessage() 的 stub + + + 设置 ISession.CreateTemporaryQueue() 的 stub + + + 设置 ISession.CreateTemporaryTopic() 的 stub + + + 设置 ISession.CreateTextMessage() 的 stub + + + 设置 ISession.CreateTextMessage(String text) 的 stub + + + 设置 ISession.DeleteDestination(IDestination destination) 的 stub + + + 设置 ISession.DeleteDurableConsumer(String name) 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 INetTxSession.Enlist(Transaction tx) 的 stub + + + 设置 INetTxSession.get_EnlistsMsDtcNativeResource() 的 stub + + + 设置 INetTxSession.get_EnlistsMsDtcNativeResource() 的 stub + + + 设置 INetTxSession.set_EnlistsMsDtcNativeResource(Boolean value) 的 stub + + + 设置 ISession.GetQueue(String name) 的 stub + + + 设置 ISession.GetTopic(String name) 的 stub + + + 设置 ISession.get_ProducerTransformer() 的 stub + + + 设置 ISession.get_ProducerTransformer() 的 stub + + + 设置 ISession.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 ISession.Recover() 的 stub + + + 设置 ISession.get_RequestTimeout() 的 stub + + + 设置 ISession.get_RequestTimeout() 的 stub + + + 设置 ISession.set_RequestTimeout(TimeSpan value) 的 stub + + + 设置 ISession.Rollback() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + 设置 ISession.get_Transacted() 的 stub + + + 设置 ISession.get_Transacted() 的 stub + + + Apache.NMS.IObjectMessage 的存根类型 + + + 初始化 type StubIObjectMessage 的新实例 + + + 设置 IMessage.Acknowledge() 的 stub + + + 设置 IMessage.Acknowledge() 的 存根 + + + 设置 IMessage.ClearBody() 的 存根 + + + 设置 IMessage.ClearProperties() 的 存根 + + + 附加委托以将 StubIObjectMessage.Body 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSCorrelationID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSDeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSDestination 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSMessageId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSPriority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSRedelivered 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSReplyTo 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSTimeToLive 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIObjectMessage.NMSType 作为具有支持字段的属性进行模拟。 + + + 设置 IObjectMessage.get_Body() 的 stub + + + 设置 IObjectMessage.get_Body() 的 stub + + + 设置 IObjectMessage.set_Body(Object value) 的 stub + + + 设置 IMessage.ClearBody() 的 stub + + + 设置 IMessage.ClearProperties() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.set_NMSCorrelationID(String value) 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.set_NMSDeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.set_NMSDestination(IDestination value) 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.set_NMSMessageId(String value) 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.set_NMSPriority(MsgPriority value) 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.set_NMSRedelivered(Boolean value) 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.set_NMSReplyTo(IDestination value) 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.set_NMSTimeToLive(TimeSpan value) 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.set_NMSTimestamp(DateTime value) 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.set_NMSType(String value) 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + Apache.NMS.IPrimitiveMap 的存根类型 + + + 初始化 type StubIPrimitiveMap 的新实例 + + + 设置 IPrimitiveMap.Clear() 的 存根 + + + 设置 IPrimitiveMap.Contains(Object key) 的 存根 + + + 设置 IPrimitiveMap.GetBool(String key) 的 存根 + + + 设置 IPrimitiveMap.GetByte(String key) 的 存根 + + + 设置 IPrimitiveMap.GetBytes(String key) 的 存根 + + + 设置 IPrimitiveMap.GetChar(String key) 的 存根 + + + 设置 IPrimitiveMap.GetDictionary(String key) 的 存根 + + + 设置 IPrimitiveMap.GetDouble(String key) 的 存根 + + + 设置 IPrimitiveMap.GetFloat(String key) 的 存根 + + + 设置 IPrimitiveMap.GetInt(String key) 的 存根 + + + 设置 IPrimitiveMap.GetList(String key) 的 存根 + + + 设置 IPrimitiveMap.GetLong(String key) 的 存根 + + + 设置 IPrimitiveMap.GetShort(String key) 的 存根 + + + 设置 IPrimitiveMap.GetString(String key) 的 存根 + + + 设置 IPrimitiveMap.Remove(Object key) 的 存根 + + + 设置 IPrimitiveMap.SetBool(String key, Boolean value) 的 存根 + + + 设置 IPrimitiveMap.SetByte(String key, Byte value) 的 存根 + + + 设置 IPrimitiveMap.SetBytes(String key, Byte[] value) 的 存根 + + + 设置 IPrimitiveMap.SetBytes(String key, Byte[] value, Int32 offset, Int32 length) 的 存根 + + + 设置 IPrimitiveMap.SetChar(String key, Char value) 的 存根 + + + 设置 IPrimitiveMap.SetDictionary(String key, IDictionary dictionary) 的 存根 + + + 设置 IPrimitiveMap.SetDouble(String key, Double value) 的 存根 + + + 设置 IPrimitiveMap.SetFloat(String key, Single value) 的 存根 + + + 设置 IPrimitiveMap.SetInt(String key, Int32 value) 的 存根 + + + 设置 IPrimitiveMap.SetList(String key, IList list) 的 存根 + + + 设置 IPrimitiveMap.SetLong(String key, Int64 value) 的 存根 + + + 设置 IPrimitiveMap.SetShort(String key, Int16 value) 的 存根 + + + 设置 IPrimitiveMap.SetString(String key, String value) 的 存根 + + + 设置 IPrimitiveMap.Clear() 的 stub + + + 设置 IPrimitiveMap.Contains(Object key) 的 stub + + + 设置 IPrimitiveMap.get_Count() 的 stub + + + 设置 IPrimitiveMap.get_Count() 的 stub + + + 设置 IPrimitiveMap.GetBool(String key) 的 stub + + + 设置 IPrimitiveMap.GetByte(String key) 的 stub + + + 设置 IPrimitiveMap.GetBytes(String key) 的 stub + + + 设置 IPrimitiveMap.GetChar(String key) 的 stub + + + 设置 IPrimitiveMap.GetDictionary(String key) 的 stub + + + 设置 IPrimitiveMap.GetDouble(String key) 的 stub + + + 设置 IPrimitiveMap.GetFloat(String key) 的 stub + + + 设置 IPrimitiveMap.GetInt(String key) 的 stub + + + 设置 IPrimitiveMap.GetList(String key) 的 stub + + + 设置 IPrimitiveMap.GetLong(String key) 的 stub + + + 设置 IPrimitiveMap.GetShort(String key) 的 stub + + + 设置 IPrimitiveMap.GetString(String key) 的 stub + + + 设置 IPrimitiveMap.get_Item(String key) 的 stub + + + 设置 IPrimitiveMap.get_Item(String key) 的 stub + + + 设置 IPrimitiveMap.set_Item(String key, Object value) 的 stub + + + 设置 IPrimitiveMap.get_Keys() 的 stub + + + 设置 IPrimitiveMap.get_Keys() 的 stub + + + 设置 IPrimitiveMap.Remove(Object key) 的 stub + + + 设置 IPrimitiveMap.SetBool(String key, Boolean value) 的 stub + + + 设置 IPrimitiveMap.SetByte(String key, Byte value) 的 stub + + + 设置 IPrimitiveMap.SetBytes(String key, Byte[] value) 的 stub + + + 设置 IPrimitiveMap.SetBytes(String key, Byte[] value, Int32 offset, Int32 length) 的 stub + + + 设置 IPrimitiveMap.SetChar(String key, Char value) 的 stub + + + 设置 IPrimitiveMap.SetDictionary(String key, IDictionary dictionary) 的 stub + + + 设置 IPrimitiveMap.SetDouble(String key, Double value) 的 stub + + + 设置 IPrimitiveMap.SetFloat(String key, Single value) 的 stub + + + 设置 IPrimitiveMap.SetInt(String key, Int32 value) 的 stub + + + 设置 IPrimitiveMap.SetList(String key, IList list) 的 stub + + + 设置 IPrimitiveMap.SetLong(String key, Int64 value) 的 stub + + + 设置 IPrimitiveMap.SetShort(String key, Int16 value) 的 stub + + + 设置 IPrimitiveMap.SetString(String key, String value) 的 stub + + + 设置 IPrimitiveMap.get_Values() 的 stub + + + 设置 IPrimitiveMap.get_Values() 的 stub + + + Apache.NMS.IQueue 的存根类型 + + + 初始化 type StubIQueue 的新实例 + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IQueue.get_QueueName() 的 stub + + + 设置 IQueue.get_QueueName() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.IQueueBrowser 的存根类型 + + + 初始化 type StubIQueueBrowser 的新实例 + + + 设置 IQueueBrowser.Close() 的 存根 + + + 设置 IQueueBrowser.Close() 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IEnumerable.GetEnumerator() 的 stub + + + 设置 IQueueBrowser.get_MessageSelector() 的 stub + + + 设置 IQueueBrowser.get_MessageSelector() 的 stub + + + 设置 IQueueBrowser.get_Queue() 的 stub + + + 设置 IQueueBrowser.get_Queue() 的 stub + + + 设置 IEnumerable.GetEnumerator() 的 存根 + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.IRedeliveryPolicy 的存根类型 + + + 初始化 type StubIRedeliveryPolicy 的新实例 + + + 设置 IRedeliveryPolicy.RedeliveryDelay(Int32 redeliveredCounter) 的 存根 + + + 附加委托以将 StubIRedeliveryPolicy.BackOffMultiplier 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIRedeliveryPolicy.CollisionAvoidancePercent 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIRedeliveryPolicy.InitialRedeliveryDelay 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIRedeliveryPolicy.MaximumRedeliveries 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIRedeliveryPolicy.UseCollisionAvoidance 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIRedeliveryPolicy.UseExponentialBackOff 作为具有支持字段的属性进行模拟。 + + + 设置 IRedeliveryPolicy.get_BackOffMultiplier() 的 stub + + + 设置 IRedeliveryPolicy.get_BackOffMultiplier() 的 stub + + + 设置 IRedeliveryPolicy.set_BackOffMultiplier(Int32 value) 的 stub + + + 设置 ICloneable.Clone() 的 stub + + + 设置 IRedeliveryPolicy.get_CollisionAvoidancePercent() 的 stub + + + 设置 IRedeliveryPolicy.get_CollisionAvoidancePercent() 的 stub + + + 设置 IRedeliveryPolicy.set_CollisionAvoidancePercent(Int32 value) 的 stub + + + 设置 IRedeliveryPolicy.get_InitialRedeliveryDelay() 的 stub + + + 设置 IRedeliveryPolicy.get_InitialRedeliveryDelay() 的 stub + + + 设置 IRedeliveryPolicy.set_InitialRedeliveryDelay(Int32 value) 的 stub + + + 设置 IRedeliveryPolicy.get_MaximumRedeliveries() 的 stub + + + 设置 IRedeliveryPolicy.get_MaximumRedeliveries() 的 stub + + + 设置 IRedeliveryPolicy.set_MaximumRedeliveries(Int32 value) 的 stub + + + 设置 IRedeliveryPolicy.RedeliveryDelay(Int32 redeliveredCounter) 的 stub + + + 设置 ICloneable.Clone() 的 存根 + + + 设置 IRedeliveryPolicy.get_UseCollisionAvoidance() 的 stub + + + 设置 IRedeliveryPolicy.get_UseCollisionAvoidance() 的 stub + + + 设置 IRedeliveryPolicy.set_UseCollisionAvoidance(Boolean value) 的 stub + + + 设置 IRedeliveryPolicy.get_UseExponentialBackOff() 的 stub + + + 设置 IRedeliveryPolicy.get_UseExponentialBackOff() 的 stub + + + 设置 IRedeliveryPolicy.set_UseExponentialBackOff(Boolean value) 的 stub + + + Apache.NMS.ISession 的存根类型 + + + 初始化 type StubISession 的新实例 + + + 设置 ISession.get_AcknowledgementMode() 的 stub + + + 设置 ISession.get_AcknowledgementMode() 的 stub + + + 设置 ISession.Close() 的 存根 + + + 设置 ISession.Commit() 的 存根 + + + 设置 ISession.CreateBrowser(IQueue queue) 的 存根 + + + 设置 ISession.CreateBrowser(IQueue queue, String selector) 的 存根 + + + 设置 ISession.CreateBytesMessage() 的 存根 + + + 设置 ISession.CreateBytesMessage(Byte[] body) 的 存根 + + + 设置 ISession.CreateConsumer(IDestination destination) 的 存根 + + + 设置 ISession.CreateConsumer(IDestination destination, String selector) 的 存根 + + + 设置 ISession.CreateConsumer(IDestination destination, String selector, Boolean noLocal) 的 存根 + + + 设置 ISession.CreateDurableConsumer(ITopic destination, String name, String selector, Boolean noLocal) 的 存根 + + + 设置 ISession.CreateMapMessage() 的 存根 + + + 设置 ISession.CreateMessage() 的 存根 + + + 设置 ISession.CreateObjectMessage(Object body) 的 存根 + + + 设置 ISession.CreateProducer() 的 存根 + + + 设置 ISession.CreateProducer(IDestination destination) 的 存根 + + + 设置 ISession.CreateStreamMessage() 的 存根 + + + 设置 ISession.CreateTemporaryQueue() 的 存根 + + + 设置 ISession.CreateTemporaryTopic() 的 存根 + + + 设置 ISession.CreateTextMessage() 的 存根 + + + 设置 ISession.CreateTextMessage(String text) 的 存根 + + + 设置 ISession.DeleteDestination(IDestination destination) 的 存根 + + + 设置 ISession.DeleteDurableConsumer(String name) 的 存根 + + + 设置 ISession.GetQueue(String name) 的 存根 + + + 设置 ISession.GetTopic(String name) 的 存根 + + + 设置 ISession.Recover() 的 存根 + + + 设置 ISession.Rollback() 的 存根 + + + 附加委托以将 StubISession.ConsumerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubISession.ProducerTransformer 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubISession.RequestTimeout 作为具有支持字段的属性进行模拟。 + + + 设置 ISession.Close() 的 stub + + + 设置 ISession.Commit() 的 stub + + + 设置 ISession.get_ConsumerTransformer() 的 stub + + + 设置 ISession.get_ConsumerTransformer() 的 stub + + + 设置 ISession.set_ConsumerTransformer(ConsumerTransformerDelegate value) 的 stub + + + 设置 ISession.CreateBrowser(IQueue queue) 的 stub + + + 设置 ISession.CreateBrowser(IQueue queue, String selector) 的 stub + + + 设置 ISession.CreateBytesMessage() 的 stub + + + 设置 ISession.CreateBytesMessage(Byte[] body) 的 stub + + + 设置 ISession.CreateConsumer(IDestination destination) 的 stub + + + 设置 ISession.CreateConsumer(IDestination destination, String selector) 的 stub + + + 设置 ISession.CreateConsumer(IDestination destination, String selector, Boolean noLocal) 的 stub + + + 设置 ISession.CreateDurableConsumer(ITopic destination, String name, String selector, Boolean noLocal) 的 stub + + + 设置 ISession.CreateMapMessage() 的 stub + + + 设置 ISession.CreateMessage() 的 stub + + + 设置 ISession.CreateObjectMessage(Object body) 的 stub + + + 设置 ISession.CreateProducer() 的 stub + + + 设置 ISession.CreateProducer(IDestination destination) 的 stub + + + 设置 ISession.CreateStreamMessage() 的 stub + + + 设置 ISession.CreateTemporaryQueue() 的 stub + + + 设置 ISession.CreateTemporaryTopic() 的 stub + + + 设置 ISession.CreateTextMessage() 的 stub + + + 设置 ISession.CreateTextMessage(String text) 的 stub + + + 设置 ISession.DeleteDestination(IDestination destination) 的 stub + + + 设置 ISession.DeleteDurableConsumer(String name) 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 ISession.GetQueue(String name) 的 stub + + + 设置 ISession.GetTopic(String name) 的 stub + + + 设置 ISession.get_ProducerTransformer() 的 stub + + + 设置 ISession.get_ProducerTransformer() 的 stub + + + 设置 ISession.set_ProducerTransformer(ProducerTransformerDelegate value) 的 stub + + + 设置 ISession.Recover() 的 stub + + + 设置 ISession.get_RequestTimeout() 的 stub + + + 设置 ISession.get_RequestTimeout() 的 stub + + + 设置 ISession.set_RequestTimeout(TimeSpan value) 的 stub + + + 设置 ISession.Rollback() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + 设置 ISession.get_Transacted() 的 stub + + + 设置 ISession.get_Transacted() 的 stub + + + Apache.NMS.IStartable 的存根类型 + + + 初始化 type StubIStartable 的新实例 + + + 设置 IStartable.Start() 的 存根 + + + 设置 IStartable.get_IsStarted() 的 stub + + + 设置 IStartable.get_IsStarted() 的 stub + + + 设置 IStartable.Start() 的 stub + + + Apache.NMS.IStoppable 的存根类型 + + + 初始化 type StubIStoppable 的新实例 + + + 设置 IStoppable.Stop() 的 存根 + + + 设置 IStoppable.Stop() 的 stub + + + Apache.NMS.IStreamMessage 的存根类型 + + + 初始化 type StubIStreamMessage 的新实例 + + + 设置 IMessage.Acknowledge() 的 stub + + + 设置 IMessage.Acknowledge() 的 存根 + + + 设置 IMessage.ClearBody() 的 存根 + + + 设置 IMessage.ClearProperties() 的 存根 + + + 设置 IStreamMessage.ReadBoolean() 的 存根 + + + 设置 IStreamMessage.ReadByte() 的 存根 + + + 设置 IStreamMessage.ReadBytes(Byte[] value) 的 存根 + + + 设置 IStreamMessage.ReadChar() 的 存根 + + + 设置 IStreamMessage.ReadDouble() 的 存根 + + + 设置 IStreamMessage.ReadInt16() 的 存根 + + + 设置 IStreamMessage.ReadInt32() 的 存根 + + + 设置 IStreamMessage.ReadInt64() 的 存根 + + + 设置 IStreamMessage.ReadObject() 的 存根 + + + 设置 IStreamMessage.ReadSingle() 的 存根 + + + 设置 IStreamMessage.ReadString() 的 存根 + + + 设置 IStreamMessage.Reset() 的 存根 + + + 设置 IStreamMessage.WriteBoolean(Boolean value) 的 存根 + + + 设置 IStreamMessage.WriteByte(Byte value) 的 存根 + + + 设置 IStreamMessage.WriteBytes(Byte[] value) 的 存根 + + + 设置 IStreamMessage.WriteBytes(Byte[] value, Int32 offset, Int32 length) 的 存根 + + + 设置 IStreamMessage.WriteChar(Char value) 的 存根 + + + 设置 IStreamMessage.WriteDouble(Double value) 的 存根 + + + 设置 IStreamMessage.WriteInt16(Int16 value) 的 存根 + + + 设置 IStreamMessage.WriteInt32(Int32 value) 的 存根 + + + 设置 IStreamMessage.WriteInt64(Int64 value) 的 存根 + + + 设置 IStreamMessage.WriteObject(Object value) 的 存根 + + + 设置 IStreamMessage.WriteSingle(Single value) 的 存根 + + + 设置 IStreamMessage.WriteString(String value) 的 存根 + + + 附加委托以将 StubIStreamMessage.NMSCorrelationID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSDeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSDestination 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSMessageId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSPriority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSRedelivered 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSReplyTo 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSTimeToLive 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIStreamMessage.NMSType 作为具有支持字段的属性进行模拟。 + + + 设置 IMessage.ClearBody() 的 stub + + + 设置 IMessage.ClearProperties() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.set_NMSCorrelationID(String value) 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.set_NMSDeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.set_NMSDestination(IDestination value) 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.set_NMSMessageId(String value) 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.set_NMSPriority(MsgPriority value) 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.set_NMSRedelivered(Boolean value) 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.set_NMSReplyTo(IDestination value) 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.set_NMSTimeToLive(TimeSpan value) 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.set_NMSTimestamp(DateTime value) 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.set_NMSType(String value) 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IStreamMessage.ReadBoolean() 的 stub + + + 设置 IStreamMessage.ReadByte() 的 stub + + + 设置 IStreamMessage.ReadBytes(Byte[] value) 的 stub + + + 设置 IStreamMessage.ReadChar() 的 stub + + + 设置 IStreamMessage.ReadDouble() 的 stub + + + 设置 IStreamMessage.ReadInt16() 的 stub + + + 设置 IStreamMessage.ReadInt32() 的 stub + + + 设置 IStreamMessage.ReadInt64() 的 stub + + + 设置 IStreamMessage.ReadObject() 的 stub + + + 设置 IStreamMessage.ReadSingle() 的 stub + + + 设置 IStreamMessage.ReadString() 的 stub + + + 设置 IStreamMessage.Reset() 的 stub + + + 设置 IStreamMessage.WriteBoolean(Boolean value) 的 stub + + + 设置 IStreamMessage.WriteByte(Byte value) 的 stub + + + 设置 IStreamMessage.WriteBytes(Byte[] value) 的 stub + + + 设置 IStreamMessage.WriteBytes(Byte[] value, Int32 offset, Int32 length) 的 stub + + + 设置 IStreamMessage.WriteChar(Char value) 的 stub + + + 设置 IStreamMessage.WriteDouble(Double value) 的 stub + + + 设置 IStreamMessage.WriteInt16(Int16 value) 的 stub + + + 设置 IStreamMessage.WriteInt32(Int32 value) 的 stub + + + 设置 IStreamMessage.WriteInt64(Int64 value) 的 stub + + + 设置 IStreamMessage.WriteObject(Object value) 的 stub + + + 设置 IStreamMessage.WriteSingle(Single value) 的 stub + + + 设置 IStreamMessage.WriteString(String value) 的 stub + + + Apache.NMS.ITemporaryQueue 的存根类型 + + + 初始化 type StubITemporaryQueue 的新实例 + + + 设置 ITemporaryQueue.Delete() 的 存根 + + + 设置 ITemporaryQueue.Delete() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IQueue.get_QueueName() 的 stub + + + 设置 IQueue.get_QueueName() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + Apache.NMS.ITemporaryTopic 的存根类型 + + + 初始化 type StubITemporaryTopic 的新实例 + + + 设置 ITemporaryTopic.Delete() 的 存根 + + + 设置 ITemporaryTopic.Delete() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + 设置 ITopic.get_TopicName() 的 stub + + + 设置 ITopic.get_TopicName() 的 stub + + + Apache.NMS.ITextMessage 的存根类型 + + + 初始化 type StubITextMessage 的新实例 + + + 设置 IMessage.Acknowledge() 的 stub + + + 设置 IMessage.Acknowledge() 的 存根 + + + 设置 IMessage.ClearBody() 的 存根 + + + 设置 IMessage.ClearProperties() 的 存根 + + + 附加委托以将 StubITextMessage.NMSCorrelationID 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSDeliveryMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSDestination 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSMessageId 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSPriority 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSRedelivered 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSReplyTo 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSTimeToLive 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSTimestamp 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.NMSType 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubITextMessage.Text 作为具有支持字段的属性进行模拟。 + + + 设置 IMessage.ClearBody() 的 stub + + + 设置 IMessage.ClearProperties() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.get_NMSCorrelationID() 的 stub + + + 设置 IMessage.set_NMSCorrelationID(String value) 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.get_NMSDeliveryMode() 的 stub + + + 设置 IMessage.set_NMSDeliveryMode(MsgDeliveryMode value) 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.get_NMSDestination() 的 stub + + + 设置 IMessage.set_NMSDestination(IDestination value) 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.get_NMSMessageId() 的 stub + + + 设置 IMessage.set_NMSMessageId(String value) 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.get_NMSPriority() 的 stub + + + 设置 IMessage.set_NMSPriority(MsgPriority value) 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.get_NMSRedelivered() 的 stub + + + 设置 IMessage.set_NMSRedelivered(Boolean value) 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.get_NMSReplyTo() 的 stub + + + 设置 IMessage.set_NMSReplyTo(IDestination value) 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.get_NMSTimeToLive() 的 stub + + + 设置 IMessage.set_NMSTimeToLive(TimeSpan value) 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.get_NMSTimestamp() 的 stub + + + 设置 IMessage.set_NMSTimestamp(DateTime value) 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.get_NMSType() 的 stub + + + 设置 IMessage.set_NMSType(String value) 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 IMessage.get_Properties() 的 stub + + + 设置 ITextMessage.get_Text() 的 stub + + + 设置 ITextMessage.get_Text() 的 stub + + + 设置 ITextMessage.set_Text(String value) 的 stub + + + Apache.NMS.ITopic 的存根类型 + + + 初始化 type StubITopic 的新实例 + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDestination.get_DestinationType() 的 stub + + + 设置 IDisposable.Dispose() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsQueue() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTemporary() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDestination.get_IsTopic() 的 stub + + + 设置 IDisposable.Dispose() 的 存根 + + + 设置 ITopic.get_TopicName() 的 stub + + + 设置 ITopic.get_TopicName() 的 stub + + + Apache.NMS.ITrace 的存根类型 + + + 初始化 type StubITrace 的新实例 + + + 设置 ITrace.Debug(String message) 的 存根 + + + 设置 ITrace.Error(String message) 的 存根 + + + 设置 ITrace.Fatal(String message) 的 存根 + + + 设置 ITrace.Info(String message) 的 存根 + + + 设置 ITrace.Warn(String message) 的 存根 + + + 设置 ITrace.Debug(String message) 的 stub + + + 设置 ITrace.Error(String message) 的 stub + + + 设置 ITrace.Fatal(String message) 的 stub + + + 设置 ITrace.Info(String message) 的 stub + + + 设置 ITrace.get_IsDebugEnabled() 的 stub + + + 设置 ITrace.get_IsDebugEnabled() 的 stub + + + 设置 ITrace.get_IsErrorEnabled() 的 stub + + + 设置 ITrace.get_IsErrorEnabled() 的 stub + + + 设置 ITrace.get_IsFatalEnabled() 的 stub + + + 设置 ITrace.get_IsFatalEnabled() 的 stub + + + 设置 ITrace.get_IsInfoEnabled() 的 stub + + + 设置 ITrace.get_IsInfoEnabled() 的 stub + + + 设置 ITrace.get_IsWarnEnabled() 的 stub + + + 设置 ITrace.get_IsWarnEnabled() 的 stub + + + 设置 ITrace.Warn(String message) 的 stub + + + Apache.NMS.IllegalStateException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubIllegalStateException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubIllegalStateException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubIllegalStateException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.InvalidClientIDException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubInvalidClientIDException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubInvalidClientIDException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubInvalidClientIDException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.InvalidDestinationException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubInvalidDestinationException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubInvalidDestinationException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubInvalidDestinationException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.InvalidSelectorException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubInvalidSelectorException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubInvalidSelectorException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubInvalidSelectorException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.MessageEOFException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubMessageEOFException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubMessageEOFException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubMessageEOFException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.MessageFormatException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubMessageFormatException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubMessageFormatException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubMessageFormatException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.MessageNotReadableException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubMessageNotReadableException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubMessageNotReadableException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubMessageNotReadableException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.MessageNotWriteableException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubMessageNotWriteableException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubMessageNotWriteableException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubMessageNotWriteableException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.NMSConnectionException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubNMSConnectionException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubNMSConnectionException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubNMSConnectionException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.NMSConnectionFactory 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubNMSConnectionFactory 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.NMSConstants 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubNMSConstants 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.NMSException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubNMSException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubNMSException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubNMSException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.NMSSecurityException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubNMSSecurityException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubNMSSecurityException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubNMSSecurityException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.ProviderFactoryInfo 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubProviderFactoryInfo 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.ResourceAllocationException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubResourceAllocationException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubResourceAllocationException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubResourceAllocationException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.TransactionInProgressException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubTransactionInProgressException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubTransactionInProgressException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubTransactionInProgressException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.TransactionRolledBackException 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubTransactionRolledBackException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubTransactionRolledBackException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 NMSException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubTransactionRolledBackException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + Apache.NMS.Policies.RedeliveryPolicy 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 RedeliveryPolicy.get_BackOffMultiplier() 的 填充码 + + + 设置 RedeliveryPolicy.set_BackOffMultiplier(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.Clone() 的 填充码 + + + 设置 RedeliveryPolicy.get_CollisionAvoidancePercent() 的 填充码 + + + 设置 RedeliveryPolicy.set_CollisionAvoidancePercent(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.get_InitialRedeliveryDelay() 的 填充码 + + + 设置 RedeliveryPolicy.set_InitialRedeliveryDelay(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.get_MaximumRedeliveries() 的 填充码 + + + 设置 RedeliveryPolicy.set_MaximumRedeliveries(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.RedeliveryDelay(Int32 redeliveredCounter) 的 填充码 + + + 设置 RedeliveryPolicy.get_UseCollisionAvoidance() 的 填充码 + + + 设置 RedeliveryPolicy.set_UseCollisionAvoidance(Boolean value) 的 填充码 + + + 设置 RedeliveryPolicy.get_UseExponentialBackOff() 的 填充码 + + + 设置 RedeliveryPolicy.set_UseExponentialBackOff(Boolean value) 的 填充码 + + + 设置 RedeliveryPolicy.get_BackOffMultiplier() 的 填充码 + + + 设置 RedeliveryPolicy.set_BackOffMultiplier(Int32 value) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 将接口的成员绑定到此填充码。 + + + 设置 RedeliveryPolicy.Clone() 的 填充码 + + + 设置 RedeliveryPolicy.get_CollisionAvoidancePercent() 的 填充码 + + + 设置 RedeliveryPolicy.set_CollisionAvoidancePercent(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.RedeliveryPolicy() 的 填充码 + + + 设置 RedeliveryPolicy.get_InitialRedeliveryDelay() 的 填充码 + + + 设置 RedeliveryPolicy.set_InitialRedeliveryDelay(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.get_MaximumRedeliveries() 的 填充码 + + + 设置 RedeliveryPolicy.set_MaximumRedeliveries(Int32 value) 的 填充码 + + + 设置 RedeliveryPolicy.get_NextBool() 的 填充码 + + + 设置 RedeliveryPolicy.get_RandomNumberGenerator() 的 填充码 + + + 设置 RedeliveryPolicy.RedeliveryDelay(Int32 redeliveredCounter) 的 填充码 + + + 设置 RedeliveryPolicy.RedeliveryPolicy() 的 填充码 + + + 设置 RedeliveryPolicy.get_UseCollisionAvoidance() 的 填充码 + + + 设置 RedeliveryPolicy.set_UseCollisionAvoidance(Boolean value) 的 填充码 + + + 设置 RedeliveryPolicy.get_UseExponentialBackOff() 的 填充码 + + + 设置 RedeliveryPolicy.set_UseExponentialBackOff(Boolean value) 的 填充码 + + + Apache.NMS.Policies.RedeliveryPolicy 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubRedeliveryPolicy 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 RedeliveryPolicy.RedeliveryDelay(Int32 redeliveredCounter) 的 存根 + + + 设置 RedeliveryPolicy.RedeliveryDelay(Int32 redeliveredCounter) 的 stub + + + Apache.NMS.Util.Atomic`1 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 Atomic`1.CompareAndSet(!0 expected, !0 newValue) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 Atomic`1.CompareAndSet(!0 expected, !0 newValue) 的 填充码 + + + 设置 Atomic`1.Atomic`1() 的 填充码 + + + 设置 Atomic`1.Atomic`1(!0 defaultValue) 的 填充码 + + + Apache.NMS.Util.AtomicReference`1 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 AtomicReference`1.GetAndSet(!0 value) 的 填充码 + + + 设置 AtomicReference`1.get_Value() 的 填充码 + + + 设置 AtomicReference`1.set_Value(!0 value) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 AtomicReference`1.AtomicReference`1() 的 填充码 + + + 设置 AtomicReference`1.AtomicReference`1(!0 defaultValue) 的 填充码 + + + 设置 AtomicReference`1.GetAndSet(!0 value) 的 填充码 + + + 设置 AtomicReference`1.get_Value() 的 填充码 + + + 设置 AtomicReference`1.set_Value(!0 value) 的 填充码 + + + Apache.NMS.Util.CountDownLatch 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 CountDownLatch.get_AsyncWaitHandle() 的 填充码 + + + 设置 CountDownLatch.get_Remaining() 的 填充码 + + + 设置 CountDownLatch.await() 的 填充码 + + + 设置 CountDownLatch.await(TimeSpan timeout) 的 填充码 + + + 设置 CountDownLatch.countDown() 的 填充码 + + + 设置 CountDownLatch.get_AsyncWaitHandle() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 CountDownLatch.CountDownLatch(Int32 i) 的 填充码 + + + 设置 CountDownLatch.get_Remaining() 的 填充码 + + + 设置 CountDownLatch.await() 的 填充码 + + + 设置 CountDownLatch.await(TimeSpan timeout) 的 填充码 + + + 设置 CountDownLatch.countDown() 的 填充码 + + + Apache.NMS.Util.DateUtils 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 DateUtils.DateUtils() 的 填充码 + + + 设置 DateUtils.DateUtils() 的 填充码 + + + 设置 DateUtils.ToDateTime(Int64 javaTime) 的 填充码 + + + 设置 DateUtils.ToDateTimeUtc(Int64 javaTime) 的 填充码 + + + 设置 DateUtils.ToJavaTime(DateTime dateTime) 的 填充码 + + + 设置 DateUtils.ToJavaTimeUtc(DateTime dateTime) 的 填充码 + + + Apache.NMS.Util.EndianBinaryReader 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 EndianBinaryReader.ReadChar() 的 填充码 + + + 设置 EndianBinaryReader.Read(Char[] buffer, Int32 index, Int32 count) 的 填充码 + + + 设置 EndianBinaryReader.ReadChars(Int32 count) 的 填充码 + + + 设置 EndianBinaryReader.ReadDouble() 的 填充码 + + + 设置 EndianBinaryReader.ReadInt16() 的 填充码 + + + 设置 EndianBinaryReader.ReadInt32() 的 填充码 + + + 设置 EndianBinaryReader.ReadInt64() 的 填充码 + + + 设置 EndianBinaryReader.ReadSingle() 的 填充码 + + + 设置 EndianBinaryReader.ReadString() 的 填充码 + + + 设置 EndianBinaryReader.ReadString16() 的 填充码 + + + 设置 EndianBinaryReader.ReadString32() 的 填充码 + + + 设置 EndianBinaryReader.ReadUInt16() 的 填充码 + + + 设置 EndianBinaryReader.ReadUInt32() 的 填充码 + + + 设置 EndianBinaryReader.ReadUInt64() 的 填充码 + + + 设置 EndianBinaryReader.doReadString(Int32 utfLength) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 EndianBinaryReader.EndianBinaryReader(Stream input) 的 填充码 + + + 设置 EndianBinaryReader.CreateDataFormatException() 的 填充码 + + + 设置 EndianBinaryReader.ReadChar() 的 填充码 + + + 设置 EndianBinaryReader.Read(Char[] buffer, Int32 index, Int32 count) 的 填充码 + + + 设置 EndianBinaryReader.ReadChars(Int32 count) 的 填充码 + + + 设置 EndianBinaryReader.ReadDouble() 的 填充码 + + + 设置 EndianBinaryReader.ReadInt16() 的 填充码 + + + 设置 EndianBinaryReader.ReadInt32() 的 填充码 + + + 设置 EndianBinaryReader.ReadInt64() 的 填充码 + + + 设置 EndianBinaryReader.ReadSingle() 的 填充码 + + + 设置 EndianBinaryReader.ReadString() 的 填充码 + + + 设置 EndianBinaryReader.ReadString16() 的 填充码 + + + 设置 EndianBinaryReader.ReadString32() 的 填充码 + + + 设置 EndianBinaryReader.ReadUInt16() 的 填充码 + + + 设置 EndianBinaryReader.ReadUInt32() 的 填充码 + + + 设置 EndianBinaryReader.ReadUInt64() 的 填充码 + + + 设置 EndianBinaryReader.doReadString(Int32 utfLength) 的 填充码 + + + Apache.NMS.Util.EndianBinaryWriter 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 EndianBinaryWriter.Write(Char ch) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Char[] chars) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Char[] chars, Int32 index, Int32 count) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Double value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Int16 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Int32 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Int64 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Single value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(String text) 的 填充码 + + + 设置 EndianBinaryWriter.WriteString16(String text) 的 填充码 + + + 设置 EndianBinaryWriter.WriteString32(String text) 的 填充码 + + + 设置 EndianBinaryWriter.Write(UInt16 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(UInt32 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(UInt64 value) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 EndianBinaryWriter.EndianBinaryWriter(Stream output) 的 填充码 + + + 设置 EndianBinaryWriter.CountUtf8Bytes(Char[] chars) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Char ch) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Char[] chars) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Char[] chars, Int32 index, Int32 count) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Double value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Int16 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Int32 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Int64 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(Single value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(String text) 的 填充码 + + + 设置 EndianBinaryWriter.WriteString16(String text) 的 填充码 + + + 设置 EndianBinaryWriter.WriteString32(String text) 的 填充码 + + + 设置 EndianBinaryWriter.Write(UInt16 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(UInt32 value) 的 填充码 + + + 设置 EndianBinaryWriter.Write(UInt64 value) 的 填充码 + + + 设置 EndianBinaryWriter.encodeUTF8toBuffer(Char[] chars, Byte[] buffer) 的 填充码 + + + Apache.NMS.Util.EndianSupport 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 EndianSupport.EndianSupport() 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Byte[] x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Char x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Double x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Int16 x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Int32 x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Int64 x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(Single x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(UInt16 x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(UInt32 x) 的 填充码 + + + 设置 EndianSupport.SwitchEndian(UInt64 x) 的 填充码 + + + Apache.NMS.Util.MessagePropertyIntercepter 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 MessagePropertyIntercepter.GetObjectProperty(String name) 的 填充码 + + + 设置 MessagePropertyIntercepter.SetObjectProperty(String name, Object value) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 MessagePropertyIntercepter.MessagePropertyIntercepter(IMessage message, IPrimitiveMap properties) 的 填充码 + + + 设置 MessagePropertyIntercepter.MessagePropertyIntercepter(IMessage message, IPrimitiveMap properties, Boolean readOnly) 的 填充码 + + + 设置 MessagePropertyIntercepter.GetObjectProperty(String name) 的 填充码 + + + 设置 MessagePropertyIntercepter.SetObjectProperty(String name, Object value) 的 填充码 + + + Apache.NMS.Util.MessageTransformation 的填充码类型 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 MessageTransformation.CopyProperties(IMessage fromMessage, IMessage toMessage) 的 填充码 + + + 设置 MessageTransformation.TransformMessage(IMessage message) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 MessageTransformation.MessageTransformation() 的 填充码 + + + 设置 MessageTransformation.CopyNMSMessageProperties(IMessage fromMessage, IMessage toMessage) 的 填充码 + + + 设置 MessageTransformation.CopyProperties(IMessage fromMessage, IMessage toMessage) 的 填充码 + + + 设置 MessageTransformation.TransformMessage(IMessage message) 的 填充码 + + + Apache.NMS.Util.NMSConvert 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 NMSConvert.NMSConvert() 的 填充码 + + + 设置 NMSConvert.DeserializeObjFromMessage(IMessage message) 的 填充码 + + + 设置 NMSConvert.FromXmlMessage(IMessage message) 的 填充码 + + + 设置 NMSConvert.GetRuntimeType(String typeName) 的 填充码 + + + 设置 NMSConvert.SerializeObjToMessage(ITextMessage message, Object obj) 的 填充码 + + + 设置 NMSConvert.ToAcknowledgementMode(String ackText) 的 填充码 + + + 设置 NMSConvert.ToXmlMessage(IMessageProducer producer, Object obj) 的 填充码 + + + 设置 NMSConvert.ToXmlMessage(ISession session, Object obj) 的 填充码 + + + Apache.NMS.Util.NMSExceptionSupport 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 NMSExceptionSupport.NMSExceptionSupport() 的 填充码 + + + 设置 NMSExceptionSupport.Create(Exception cause) 的 填充码 + + + 设置 NMSExceptionSupport.CreateMessageEOFException(Exception cause) 的 填充码 + + + 设置 NMSExceptionSupport.CreateMessageFormatException(Exception cause) 的 填充码 + + + 设置 NMSExceptionSupport.Create(String message, Exception cause) 的 填充码 + + + 设置 NMSExceptionSupport.Create(String message, String errorCode, Exception cause) 的 填充码 + + + Apache.NMS.Util.PrimitiveMap 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 PrimitiveMap.CheckValidType(Object value) 的 填充码 + + + 设置 PrimitiveMap.CheckValueType(Object value, Type type) 的 填充码 + + + 设置 PrimitiveMap.Clear() 的 填充码 + + + 设置 PrimitiveMap.Contains(Object key) 的 填充码 + + + 设置 PrimitiveMap.get_Count() 的 填充码 + + + 设置 PrimitiveMap.GetBool(String key) 的 填充码 + + + 设置 PrimitiveMap.GetByte(String key) 的 填充码 + + + 设置 PrimitiveMap.GetBytes(String key) 的 填充码 + + + 设置 PrimitiveMap.GetChar(String key) 的 填充码 + + + 设置 PrimitiveMap.GetDictionary(String key) 的 填充码 + + + 设置 PrimitiveMap.GetDouble(String key) 的 填充码 + + + 设置 PrimitiveMap.GetFloat(String key) 的 填充码 + + + 设置 PrimitiveMap.GetInt(String key) 的 填充码 + + + 设置 PrimitiveMap.GetList(String key) 的 填充码 + + + 设置 PrimitiveMap.GetLong(String key) 的 填充码 + + + 设置 PrimitiveMap.GetShort(String key) 的 填充码 + + + 设置 PrimitiveMap.GetString(String key) 的 填充码 + + + 设置 PrimitiveMap.GetValue(String key) 的 填充码 + + + 设置 PrimitiveMap.get_Item(String key) 的 填充码 + + + 设置 PrimitiveMap.set_Item(String key, Object value) 的 填充码 + + + 设置 PrimitiveMap.get_Keys() 的 填充码 + + + 设置 PrimitiveMap.Marshal() 的 填充码 + + + 设置 PrimitiveMap.Marshal(Stream destination) 的 填充码 + + + 设置 PrimitiveMap.Remove(Object key) 的 填充码 + + + 设置 PrimitiveMap.SetBool(String key, Boolean value) 的 填充码 + + + 设置 PrimitiveMap.SetByte(String key, Byte value) 的 填充码 + + + 设置 PrimitiveMap.SetBytes(String key, Byte[] value) 的 填充码 + + + 设置 PrimitiveMap.SetBytes(String key, Byte[] value, Int32 offset, Int32 length) 的 填充码 + + + 设置 PrimitiveMap.SetChar(String key, Char value) 的 填充码 + + + 设置 PrimitiveMap.SetDictionary(String key, IDictionary value) 的 填充码 + + + 设置 PrimitiveMap.SetDouble(String key, Double value) 的 填充码 + + + 设置 PrimitiveMap.SetFloat(String key, Single value) 的 填充码 + + + 设置 PrimitiveMap.SetInt(String key, Int32 value) 的 填充码 + + + 设置 PrimitiveMap.SetList(String key, IList value) 的 填充码 + + + 设置 PrimitiveMap.SetLong(String key, Int64 value) 的 填充码 + + + 设置 PrimitiveMap.SetShort(String key, Int16 value) 的 填充码 + + + 设置 PrimitiveMap.SetString(String key, String value) 的 填充码 + + + 设置 PrimitiveMap.SetValue(String key, Object value) 的 填充码 + + + 设置 PrimitiveMap.ToString() 的 填充码 + + + 设置 PrimitiveMap.get_Values() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 PrimitiveMap.CheckValidType(Object value) 的 填充码 + + + 设置 PrimitiveMap.CheckValueType(Object value, Type type) 的 填充码 + + + 设置 PrimitiveMap.Clear() 的 填充码 + + + 设置 PrimitiveMap.PrimitiveMap() 的 填充码 + + + 设置 PrimitiveMap.Contains(Object key) 的 填充码 + + + 设置 PrimitiveMap.get_Count() 的 填充码 + + + 设置 PrimitiveMap.GetBool(String key) 的 填充码 + + + 设置 PrimitiveMap.GetByte(String key) 的 填充码 + + + 设置 PrimitiveMap.GetBytes(String key) 的 填充码 + + + 设置 PrimitiveMap.GetChar(String key) 的 填充码 + + + 设置 PrimitiveMap.GetDictionary(String key) 的 填充码 + + + 设置 PrimitiveMap.GetDouble(String key) 的 填充码 + + + 设置 PrimitiveMap.GetFloat(String key) 的 填充码 + + + 设置 PrimitiveMap.GetInt(String key) 的 填充码 + + + 设置 PrimitiveMap.GetList(String key) 的 填充码 + + + 设置 PrimitiveMap.GetLong(String key) 的 填充码 + + + 设置 PrimitiveMap.GetShort(String key) 的 填充码 + + + 设置 PrimitiveMap.GetString(String key) 的 填充码 + + + 设置 PrimitiveMap.GetValue(String key) 的 填充码 + + + 设置 PrimitiveMap.get_Item(String key) 的 填充码 + + + 设置 PrimitiveMap.set_Item(String key, Object value) 的 填充码 + + + 设置 PrimitiveMap.get_Keys() 的 填充码 + + + 设置 PrimitiveMap.Marshal() 的 填充码 + + + 设置 PrimitiveMap.MarshalPrimitive(BinaryWriter dataOut, Object value) 的 填充码 + + + 设置 PrimitiveMap.MarshalPrimitiveList(IList list, BinaryWriter dataOut) 的 填充码 + + + 设置 PrimitiveMap.MarshalPrimitiveMap(IDictionary map) 的 填充码 + + + 设置 PrimitiveMap.MarshalPrimitiveMap(IDictionary map, BinaryWriter dataOut) 的 填充码 + + + 设置 PrimitiveMap.MarshalPrimitiveMap(IDictionary map, Stream stream) 的 填充码 + + + 设置 PrimitiveMap.Marshal(Stream destination) 的 填充码 + + + 设置 PrimitiveMap.Remove(Object key) 的 填充码 + + + 设置 PrimitiveMap.SetBool(String key, Boolean value) 的 填充码 + + + 设置 PrimitiveMap.SetByte(String key, Byte value) 的 填充码 + + + 设置 PrimitiveMap.SetBytes(String key, Byte[] value) 的 填充码 + + + 设置 PrimitiveMap.SetBytes(String key, Byte[] value, Int32 offset, Int32 length) 的 填充码 + + + 设置 PrimitiveMap.SetChar(String key, Char value) 的 填充码 + + + 设置 PrimitiveMap.SetDictionary(String key, IDictionary value) 的 填充码 + + + 设置 PrimitiveMap.SetDouble(String key, Double value) 的 填充码 + + + 设置 PrimitiveMap.SetFloat(String key, Single value) 的 填充码 + + + 设置 PrimitiveMap.SetInt(String key, Int32 value) 的 填充码 + + + 设置 PrimitiveMap.SetList(String key, IList value) 的 填充码 + + + 设置 PrimitiveMap.SetLong(String key, Int64 value) 的 填充码 + + + 设置 PrimitiveMap.SetShort(String key, Int16 value) 的 填充码 + + + 设置 PrimitiveMap.SetString(String key, String value) 的 填充码 + + + 设置 PrimitiveMap.SetValue(String key, Object value) 的 填充码 + + + 设置 PrimitiveMap.ToString() 的 填充码 + + + 设置 PrimitiveMap.Unmarshal(Byte[] data) 的 填充码 + + + 设置 PrimitiveMap.UnmarshalPrimitive(BinaryReader dataIn) 的 填充码 + + + 设置 PrimitiveMap.UnmarshalPrimitiveList(BinaryReader dataIn) 的 填充码 + + + 设置 PrimitiveMap.UnmarshalPrimitiveMap(BinaryReader dataIn) 的 填充码 + + + 设置 PrimitiveMap.UnmarshalPrimitiveMap(Byte[] data) 的 填充码 + + + 设置 PrimitiveMap.UnmarshalPrimitiveMap(Stream source) 的 填充码 + + + 设置 PrimitiveMap.Unmarshal(Stream source) 的 填充码 + + + 设置 PrimitiveMap.get_Values() 的 填充码 + + + Apache.NMS.Util.PrimitiveMapInterceptor 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 PrimitiveMapInterceptor.get_AllowByteArrays() 的 填充码 + + + 设置 PrimitiveMapInterceptor.set_AllowByteArrays(Boolean value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.Clear() 的 填充码 + + + 设置 PrimitiveMapInterceptor.Contains(Object key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Count() 的 填充码 + + + 设置 PrimitiveMapInterceptor.FailIfReadOnly() 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetBool(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetByte(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetBytes(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetChar(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetDictionary(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetDouble(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetFloat(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetInt(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetList(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetLong(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetObjectProperty(String name) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetShort(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetString(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Item(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.set_Item(String key, Object value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Keys() 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_ReadOnly() 的 填充码 + + + 设置 PrimitiveMapInterceptor.set_ReadOnly(Boolean value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.Remove(Object key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetBool(String key, Boolean value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetByte(String key, Byte value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetBytes(String key, Byte[] value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetBytes(String key, Byte[] value, Int32 offset, Int32 length) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetChar(String key, Char value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetDictionary(String key, IDictionary dictionary) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetDouble(String key, Double value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetFloat(String key, Single value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetInt(String key, Int32 value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetList(String key, IList list) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetLong(String key, Int64 value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetObjectProperty(String name, Object value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetShort(String key, Int16 value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetString(String key, String value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Values() 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_AllowByteArrays() 的 填充码 + + + 设置 PrimitiveMapInterceptor.set_AllowByteArrays(Boolean value) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 PrimitiveMapInterceptor.Clear() 的 填充码 + + + 设置 PrimitiveMapInterceptor.PrimitiveMapInterceptor(IMessage message, IPrimitiveMap properties) 的 填充码 + + + 设置 PrimitiveMapInterceptor.PrimitiveMapInterceptor(IMessage message, IPrimitiveMap properties, Boolean readOnly) 的 填充码 + + + 设置 PrimitiveMapInterceptor.PrimitiveMapInterceptor(IMessage message, IPrimitiveMap properties, Boolean readOnly, Boolean allowByteArrays) 的 填充码 + + + 设置 PrimitiveMapInterceptor.Contains(Object key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Count() 的 填充码 + + + 设置 PrimitiveMapInterceptor.FailIfReadOnly() 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetBool(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetByte(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetBytes(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetChar(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetDictionary(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetDouble(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetFloat(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetInt(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetList(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetLong(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetObjectProperty(String name) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetShort(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.GetString(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Item(String key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.set_Item(String key, Object value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Keys() 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_ReadOnly() 的 填充码 + + + 设置 PrimitiveMapInterceptor.set_ReadOnly(Boolean value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.Remove(Object key) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetBool(String key, Boolean value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetByte(String key, Byte value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetBytes(String key, Byte[] value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetBytes(String key, Byte[] value, Int32 offset, Int32 length) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetChar(String key, Char value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetDictionary(String key, IDictionary dictionary) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetDouble(String key, Double value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetFloat(String key, Single value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetInt(String key, Int32 value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetList(String key, IList list) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetLong(String key, Int64 value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetObjectProperty(String name, Object value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetShort(String key, Int16 value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.SetString(String key, String value) 的 填充码 + + + 设置 PrimitiveMapInterceptor.get_Values() 的 填充码 + + + Apache.NMS.Util.SessionUtil 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 SessionUtil.SessionUtil() 的 填充码 + + + 设置 SessionUtil.DeleteDestination(ISession session, String destinationName) 的 填充码 + + + 设置 SessionUtil.DeleteDestination(ISession session, String destinationName, DestinationType defaultType) 的 填充码 + + + 设置 SessionUtil.DeleteQueue(ISession session, String queueName) 的 填充码 + + + 设置 SessionUtil.DeleteTopic(ISession session, String topicName) 的 填充码 + + + 设置 SessionUtil.GetDestination(ISession session, String destinationName) 的 填充码 + + + 设置 SessionUtil.GetDestination(ISession session, String destinationName, DestinationType defaultType) 的 填充码 + + + 设置 SessionUtil.GetQueue(ISession session, String queueName) 的 填充码 + + + 设置 SessionUtil.GetTopic(ISession session, String topicName) 的 填充码 + + + Apache.NMS.Util.URISupport 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 URISupport.CheckParenthesis(String str) 的 填充码 + + + 设置 URISupport.URISupport() 的 填充码 + + + 设置 URISupport.CreateCompatibleUri(String uriString) 的 填充码 + + + 设置 URISupport.CreateQueryString(StringDictionary options) 的 填充码 + + + 设置 URISupport.CreateRemainingUri(Uri originalUri, StringDictionary parameters) 的 填充码 + + + 设置 URISupport.CreateUriWithQuery(Uri uri, String query) 的 填充码 + + + 设置 URISupport.get_EmptyMap() 的 填充码 + + + 设置 URISupport.ExtractProperties(StringDictionary props, String prefix) 的 填充码 + + + 设置 URISupport.GetProperties(StringDictionary props, String prefix) 的 填充码 + + + 设置 URISupport.ParseComposite(Uri uri) 的 填充码 + + + 设置 URISupport.ParseComposite(Uri uri, CompositeData rc, String ssp) 的 填充码 + + + 设置 URISupport.ParseParameters(Uri uri) 的 填充码 + + + 设置 URISupport.ParseQuery(String query) 的 填充码 + + + 设置 URISupport.RemoveQuery(Uri original) 的 填充码 + + + 设置 URISupport.SetProperties(Object target, StringDictionary map) 的 填充码 + + + 设置 URISupport.SetProperties(Object target, StringDictionary map, String prefix) 的 填充码 + + + Apache.NMS.Util.URISupport+CompositeData 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 CompositeData.get_Components() 的 填充码 + + + 设置 CompositeData.set_Components(Uri[] value) 的 填充码 + + + 设置 CompositeData.get_Fragment() 的 填充码 + + + 设置 CompositeData.set_Fragment(String value) 的 填充码 + + + 设置 CompositeData.get_Host() 的 填充码 + + + 设置 CompositeData.set_Host(String value) 的 填充码 + + + 设置 CompositeData.get_Parameters() 的 填充码 + + + 设置 CompositeData.set_Parameters(StringDictionary value) 的 填充码 + + + 设置 CompositeData.get_Path() 的 填充码 + + + 设置 CompositeData.set_Path(String value) 的 填充码 + + + 设置 CompositeData.get_Scheme() 的 填充码 + + + 设置 CompositeData.set_Scheme(String value) 的 填充码 + + + 设置 CompositeData.toUri() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 CompositeData.get_Components() 的 填充码 + + + 设置 CompositeData.set_Components(Uri[] value) 的 填充码 + + + 设置 CompositeData.CompositeData() 的 填充码 + + + 设置 CompositeData.get_Fragment() 的 填充码 + + + 设置 CompositeData.set_Fragment(String value) 的 填充码 + + + 设置 CompositeData.get_Host() 的 填充码 + + + 设置 CompositeData.set_Host(String value) 的 填充码 + + + 设置 CompositeData.get_Parameters() 的 填充码 + + + 设置 CompositeData.set_Parameters(StringDictionary value) 的 填充码 + + + 设置 CompositeData.get_Path() 的 填充码 + + + 设置 CompositeData.set_Path(String value) 的 填充码 + + + 设置 CompositeData.get_Scheme() 的 填充码 + + + 设置 CompositeData.set_Scheme(String value) 的 填充码 + + + 设置 CompositeData.toUri() 的 填充码 + + + 设置 URISupport.SplitComponents(String componentString) 的 填充码 + + + 设置 URISupport.StripPrefix(String value, String prefix) 的 填充码 + + + 设置 URISupport.UrlDecode(String s) 的 填充码 + + + 设置 URISupport.UrlEncode(String s) 的 填充码 + + + Apache.NMS.Util.XmlUtil 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 XmlUtil.CleanInvalidXmlChars(String text) 的 填充码 + + + 设置 XmlUtil.XmlUtil() 的 填充码 + + + 设置 XmlUtil.Deserialize(Type objType, String text) 的 填充码 + + + 设置 XmlUtil.Serialize(Object obj) 的 填充码 + + + 设置 XmlUtil.XmlUtil() 的 填充码 + + + 设置 XmlUtil.serializer_UnknownAttribute(Object sender, XmlAttributeEventArgs e) 的 填充码 + + + 设置 XmlUtil.serializer_UnknownElement(Object sender, XmlElementEventArgs e) 的 填充码 + + + 设置 XmlUtil.serializer_UnknownNode(Object sender, XmlNodeEventArgs e) 的 填充码 + + + Apache.NMS.Util.Atomic`1 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubAtomic 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.AtomicReference`1 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubAtomicReference 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.CountDownLatch 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubCountDownLatch 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.DateUtils 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubDateUtils 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.EndianBinaryReader 的存根类型 + + + 初始化新实例 + + + 设置 BinaryReader.get_BaseStream() 的 stub + + + 设置 BinaryReader.get_BaseStream() 的 stub + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 BinaryReader.Close() 的 存根 + + + 设置 BinaryReader.Close() 的 stub + + + 设置 BinaryReader.Dispose(Boolean disposing) 的 存根 + + + 设置 BinaryReader.Dispose(Boolean disposing) 的 stub + + + 设置 BinaryReader.FillBuffer(Int32 numBytes) 的 存根 + + + 设置 BinaryReader.FillBuffer(Int32 numBytes) 的 stub + + + 初始化 type StubEndianBinaryReader 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 BinaryReader.PeekChar() 的 存根 + + + 设置 BinaryReader.PeekChar() 的 stub + + + 设置 BinaryReader.Read() 的 存根 + + + 设置 BinaryReader.Read(Byte[] buffer, Int32 index, Int32 count) 的 存根 + + + 设置 EndianBinaryReader.Read(Char[] buffer, Int32 index, Int32 count) 的 存根 + + + 设置 BinaryReader.Read() 的 stub + + + 设置 BinaryReader.ReadBoolean() 的 存根 + + + 设置 BinaryReader.ReadBoolean() 的 stub + + + 设置 BinaryReader.ReadByte() 的 存根 + + + 设置 BinaryReader.ReadByte() 的 stub + + + 设置 BinaryReader.Read(Byte[] buffer, Int32 index, Int32 count) 的 stub + + + 设置 BinaryReader.ReadBytes(Int32 count) 的 存根 + + + 设置 BinaryReader.ReadBytes(Int32 count) 的 stub + + + 设置 EndianBinaryReader.ReadChar() 的 存根 + + + 设置 EndianBinaryReader.ReadChar() 的 stub + + + 设置 EndianBinaryReader.Read(Char[] buffer, Int32 index, Int32 count) 的 stub + + + 设置 EndianBinaryReader.ReadChars(Int32 count) 的 存根 + + + 设置 EndianBinaryReader.ReadChars(Int32 count) 的 stub + + + 设置 BinaryReader.ReadDecimal() 的 存根 + + + 设置 BinaryReader.ReadDecimal() 的 stub + + + 设置 EndianBinaryReader.ReadDouble() 的 存根 + + + 设置 EndianBinaryReader.ReadDouble() 的 stub + + + 设置 EndianBinaryReader.ReadInt16() 的 存根 + + + 设置 EndianBinaryReader.ReadInt16() 的 stub + + + 设置 EndianBinaryReader.ReadInt32() 的 存根 + + + 设置 EndianBinaryReader.ReadInt32() 的 stub + + + 设置 EndianBinaryReader.ReadInt64() 的 存根 + + + 设置 EndianBinaryReader.ReadInt64() 的 stub + + + 设置 BinaryReader.ReadSByte() 的 存根 + + + 设置 BinaryReader.ReadSByte() 的 stub + + + 设置 EndianBinaryReader.ReadSingle() 的 存根 + + + 设置 EndianBinaryReader.ReadSingle() 的 stub + + + 设置 EndianBinaryReader.ReadString() 的 存根 + + + 设置 EndianBinaryReader.ReadString() 的 stub + + + 设置 EndianBinaryReader.ReadUInt16() 的 存根 + + + 设置 EndianBinaryReader.ReadUInt16() 的 stub + + + 设置 EndianBinaryReader.ReadUInt32() 的 存根 + + + 设置 EndianBinaryReader.ReadUInt32() 的 stub + + + 设置 EndianBinaryReader.ReadUInt64() 的 存根 + + + 设置 EndianBinaryReader.ReadUInt64() 的 stub + + + Apache.NMS.Util.EndianBinaryWriter 的存根类型 + + + 初始化新实例 + + + 设置 BinaryWriter.get_BaseStream() 的 stub + + + 设置 BinaryWriter.get_BaseStream() 的 stub + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 BinaryWriter.Close() 的 存根 + + + 设置 BinaryWriter.Close() 的 stub + + + 设置 BinaryWriter.Dispose(Boolean disposing) 的 存根 + + + 设置 BinaryWriter.Dispose(Boolean disposing) 的 stub + + + 设置 BinaryWriter.Flush() 的 存根 + + + 设置 BinaryWriter.Flush() 的 stub + + + 初始化 type StubEndianBinaryWriter 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 BinaryWriter.Seek(Int32 offset, SeekOrigin origin) 的 存根 + + + 设置 BinaryWriter.Seek(Int32 offset, SeekOrigin origin) 的 stub + + + 设置 BinaryWriter.Write(Byte[] buffer) 的 存根 + + + 设置 BinaryWriter.Write(Boolean value) 的 存根 + + + 设置 BinaryWriter.Write(Byte value) 的 存根 + + + 设置 EndianBinaryWriter.Write(Char ch) 的 存根 + + + 设置 BinaryWriter.Write(Decimal value) 的 存根 + + + 设置 EndianBinaryWriter.Write(Double value) 的 存根 + + + 设置 EndianBinaryWriter.Write(Int16 value) 的 存根 + + + 设置 EndianBinaryWriter.Write(Int64 value) 的 存根 + + + 设置 EndianBinaryWriter.Write(String text) 的 存根 + + + 设置 EndianBinaryWriter.Write(Char[] chars) 的 存根 + + + 设置 EndianBinaryWriter.Write(Int32 value) 的 存根 + + + 设置 BinaryWriter.Write(SByte value) 的 存根 + + + 设置 EndianBinaryWriter.Write(Single value) 的 存根 + + + 设置 EndianBinaryWriter.Write(UInt16 value) 的 存根 + + + 设置 EndianBinaryWriter.Write(UInt32 value) 的 存根 + + + 设置 EndianBinaryWriter.Write(UInt64 value) 的 存根 + + + 设置 BinaryWriter.Write(Byte[] buffer, Int32 index, Int32 count) 的 存根 + + + 设置 EndianBinaryWriter.Write(Char[] chars, Int32 index, Int32 count) 的 存根 + + + 设置 BinaryWriter.Write(Boolean value) 的 stub + + + 设置 BinaryWriter.Write(Byte value) 的 stub + + + 设置 BinaryWriter.Write(Byte[] buffer) 的 stub + + + 设置 BinaryWriter.Write(Byte[] buffer, Int32 index, Int32 count) 的 stub + + + 设置 EndianBinaryWriter.Write(Char ch) 的 stub + + + 设置 EndianBinaryWriter.Write(Char[] chars) 的 stub + + + 设置 EndianBinaryWriter.Write(Char[] chars, Int32 index, Int32 count) 的 stub + + + 设置 BinaryWriter.Write(Decimal value) 的 stub + + + 设置 EndianBinaryWriter.Write(Double value) 的 stub + + + 设置 EndianBinaryWriter.Write(Int16 value) 的 stub + + + 设置 EndianBinaryWriter.Write(Int32 value) 的 stub + + + 设置 EndianBinaryWriter.Write(Int64 value) 的 stub + + + 设置 BinaryWriter.Write(SByte value) 的 stub + + + 设置 EndianBinaryWriter.Write(Single value) 的 stub + + + 设置 EndianBinaryWriter.Write(String text) 的 stub + + + 设置 EndianBinaryWriter.Write(UInt16 value) 的 stub + + + 设置 EndianBinaryWriter.Write(UInt32 value) 的 stub + + + 设置 EndianBinaryWriter.Write(UInt64 value) 的 stub + + + Apache.NMS.Util.EndianSupport 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubEndianSupport 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.MessagePropertyIntercepter 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 PrimitiveMapInterceptor.FailIfReadOnly() 的 存根 + + + 设置 PrimitiveMapInterceptor.FailIfReadOnly() 的 stub + + + 设置 MessagePropertyIntercepter.GetObjectProperty(String name) 的 存根 + + + 设置 MessagePropertyIntercepter.GetObjectProperty(String name) 的 stub + + + 初始化 type StubMessagePropertyIntercepter 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 MessagePropertyIntercepter.SetObjectProperty(String name, Object value) 的 存根 + + + 设置 MessagePropertyIntercepter.SetObjectProperty(String name, Object value) 的 stub + + + Apache.NMS.Util.MessageTransformation 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 MessageTransformation.CopyProperties(IMessage fromMessage, IMessage toMessage) 的 存根 + + + 设置 MessageTransformation.CopyProperties(IMessage fromMessage, IMessage toMessage) 的 stub + + + 设置 MessageTransformation.DoCreateBytesMessage() 的 存根 + + + 设置 MessageTransformation.DoCreateBytesMessage() 的 stub + + + 设置 MessageTransformation.DoCreateMapMessage() 的 存根 + + + 设置 MessageTransformation.DoCreateMapMessage() 的 stub + + + 设置 MessageTransformation.DoCreateMessage() 的 存根 + + + 设置 MessageTransformation.DoCreateMessage() 的 stub + + + 设置 MessageTransformation.DoCreateObjectMessage() 的 存根 + + + 设置 MessageTransformation.DoCreateObjectMessage() 的 stub + + + 设置 MessageTransformation.DoCreateStreamMessage() 的 存根 + + + 设置 MessageTransformation.DoCreateStreamMessage() 的 stub + + + 设置 MessageTransformation.DoCreateTextMessage() 的 存根 + + + 设置 MessageTransformation.DoCreateTextMessage() 的 stub + + + 设置 MessageTransformation.DoPostProcessMessage(IMessage message) 的 存根 + + + 设置 MessageTransformation.DoPostProcessMessage(IMessage message) 的 stub + + + 设置 MessageTransformation.DoTransformDestination(IDestination destination) 的 存根 + + + 设置 MessageTransformation.DoTransformDestination(IDestination destination) 的 stub + + + 初始化 type StubMessageTransformation 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.NMSConvert 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubNMSConvert 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.PrimitiveMap 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 PrimitiveMap.CheckValidType(Object value) 的 存根 + + + 设置 PrimitiveMap.CheckValidType(Object value) 的 stub + + + 设置 PrimitiveMap.CheckValueType(Object value, Type type) 的 存根 + + + 设置 PrimitiveMap.CheckValueType(Object value, Type type) 的 stub + + + 设置 PrimitiveMap.GetValue(String key) 的 存根 + + + 设置 PrimitiveMap.GetValue(String key) 的 stub + + + 初始化 type StubPrimitiveMap 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 PrimitiveMap.SetValue(String key, Object value) 的 存根 + + + 设置 PrimitiveMap.SetValue(String key, Object value) 的 stub + + + 设置 PrimitiveMap.ToString() 的 存根 + + + 设置 PrimitiveMap.ToString() 的 stub + + + Apache.NMS.Util.PrimitiveMapInterceptor 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 PrimitiveMapInterceptor.FailIfReadOnly() 的 存根 + + + 设置 PrimitiveMapInterceptor.FailIfReadOnly() 的 stub + + + 设置 PrimitiveMapInterceptor.GetObjectProperty(String name) 的 存根 + + + 设置 PrimitiveMapInterceptor.GetObjectProperty(String name) 的 stub + + + 初始化 type StubPrimitiveMapInterceptor 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 PrimitiveMapInterceptor.SetObjectProperty(String name, Object value) 的 存根 + + + 设置 PrimitiveMapInterceptor.SetObjectProperty(String name, Object value) 的 stub + + + Apache.NMS.Util.SessionUtil 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubSessionUtil 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.URISupport 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubURISupport 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + Apache.NMS.Util.XmlUtil 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubXmlUtil 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + diff --git a/SGGL/FineUIPro/Reference BLL/Apache.NMS.dll b/SGGL/FineUIPro/Reference BLL/Apache.NMS.dll new file mode 100644 index 00000000..d31a482b Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Apache.NMS.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Aspose.Words.dll b/SGGL/FineUIPro/Reference BLL/Aspose.Words.dll new file mode 100644 index 00000000..bb4eaeb0 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Aspose.Words.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/AxInterop.SYNCARDOCXLib.dll b/SGGL/FineUIPro/Reference BLL/AxInterop.SYNCARDOCXLib.dll new file mode 100644 index 00000000..a53f0a62 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/AxInterop.SYNCARDOCXLib.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/EmitMapper.dll b/SGGL/FineUIPro/Reference BLL/EmitMapper.dll new file mode 100644 index 00000000..dcfdc0c9 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/EmitMapper.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Interop.WIA.dll b/SGGL/FineUIPro/Reference BLL/Interop.WIA.dll new file mode 100644 index 00000000..5a3c7e1d Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Interop.WIA.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Microsoft.AspNet.Scaffolding.EntityFramework.12.0.dll b/SGGL/FineUIPro/Reference BLL/Microsoft.AspNet.Scaffolding.EntityFramework.12.0.dll new file mode 100644 index 00000000..d9a02b60 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Microsoft.AspNet.Scaffolding.EntityFramework.12.0.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/Microsoft.QualityTools.Testing.Fakes.dll b/SGGL/FineUIPro/Reference BLL/Microsoft.QualityTools.Testing.Fakes.dll new file mode 100644 index 00000000..b3c9e166 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/Microsoft.QualityTools.Testing.Fakes.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/SgManager.AI.dll b/SGGL/FineUIPro/Reference BLL/SgManager.AI.dll new file mode 100644 index 00000000..8c5e3c48 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/SgManager.AI.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.dll b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.dll new file mode 100644 index 00000000..42597d9f Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.fakesconfig b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.fakesconfig new file mode 100644 index 00000000..745538ef Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.fakesconfig differ diff --git a/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.xml b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.xml new file mode 100644 index 00000000..141a6447 --- /dev/null +++ b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.Fakes.xml @@ -0,0 +1,3671 @@ + + + + ThoughtWorks.QRCode.Fakes + + + + ThoughtWorks.QRCode.Codec.Data.QRCodeBitmapImage 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeBitmapImage.get_Height() 的 填充码 + + + 设置 QRCodeBitmapImage.get_Width() 的 填充码 + + + 设置 QRCodeBitmapImage.getPixel(Int32 x, Int32 y) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 QRCodeBitmapImage.QRCodeBitmapImage(Bitmap image) 的 填充码 + + + 设置 QRCodeBitmapImage.get_Height() 的 填充码 + + + 设置 QRCodeBitmapImage.get_Width() 的 填充码 + + + 设置 QRCodeBitmapImage.getPixel(Int32 x, Int32 y) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Data.QRCodeSymbol 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 设置 QRCodeSymbol.get_AlignmentPattern() 的 填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeSymbol.get_AlignmentPattern() 的 填充码 + + + 设置 QRCodeSymbol.get_Blocks() 的 填充码 + + + 设置 QRCodeSymbol.get_DataCapacity() 的 填充码 + + + 设置 QRCodeSymbol.get_ErrorCollectionLevel() 的 填充码 + + + 设置 QRCodeSymbol.get_Height() 的 填充码 + + + 设置 QRCodeSymbol.get_MaskPatternRefererAsString() 的 填充码 + + + 设置 QRCodeSymbol.get_MaskPatternReferer() 的 填充码 + + + 设置 QRCodeSymbol.get_NumErrorCollectionCode() 的 填充码 + + + 设置 QRCodeSymbol.get_NumRSBlocks() 的 填充码 + + + 设置 QRCodeSymbol.get_Version() 的 填充码 + + + 设置 QRCodeSymbol.get_VersionReference() 的 填充码 + + + 设置 QRCodeSymbol.get_Width() 的 填充码 + + + 设置 QRCodeSymbol.calcDataCapacity() 的 填充码 + + + 设置 QRCodeSymbol.decodeFormatInformation(Boolean[] formatInformation) 的 填充码 + + + 设置 QRCodeSymbol.generateMaskPattern() 的 填充码 + + + 设置 QRCodeSymbol.getElement(Int32 x, Int32 y) 的 填充码 + + + 设置 QRCodeSymbol.initialize() 的 填充码 + + + 设置 QRCodeSymbol.isInFunctionPattern(Int32 targetX, Int32 targetY) 的 填充码 + + + 设置 QRCodeSymbol.readFormatInformation() 的 填充码 + + + 设置 QRCodeSymbol.reverseElement(Int32 x, Int32 y) 的 填充码 + + + 设置 QRCodeSymbol.unmask() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 QRCodeSymbol.get_Blocks() 的 填充码 + + + 设置 QRCodeSymbol.QRCodeSymbol(Boolean[][] moduleMatrix) 的 填充码 + + + 设置 QRCodeSymbol.get_DataCapacity() 的 填充码 + + + 设置 QRCodeSymbol.get_ErrorCollectionLevel() 的 填充码 + + + 设置 QRCodeSymbol.get_Height() 的 填充码 + + + 设置 QRCodeSymbol.get_MaskPatternRefererAsString() 的 填充码 + + + 设置 QRCodeSymbol.get_MaskPatternReferer() 的 填充码 + + + 设置 QRCodeSymbol.get_NumErrorCollectionCode() 的 填充码 + + + 设置 QRCodeSymbol.get_NumRSBlocks() 的 填充码 + + + 设置 QRCodeSymbol.get_Version() 的 填充码 + + + 设置 QRCodeSymbol.get_VersionReference() 的 填充码 + + + 设置 QRCodeSymbol.get_Width() 的 填充码 + + + 设置 QRCodeSymbol.calcDataCapacity() 的 填充码 + + + 设置 QRCodeSymbol.decodeFormatInformation(Boolean[] formatInformation) 的 填充码 + + + 设置 QRCodeSymbol.generateMaskPattern() 的 填充码 + + + 设置 QRCodeSymbol.getElement(Int32 x, Int32 y) 的 填充码 + + + 设置 QRCodeSymbol.initialize() 的 填充码 + + + 设置 QRCodeSymbol.isInFunctionPattern(Int32 targetX, Int32 targetY) 的 填充码 + + + 设置 QRCodeSymbol.readFormatInformation() 的 填充码 + + + 设置 QRCodeSymbol.reverseElement(Int32 x, Int32 y) 的 填充码 + + + 设置 QRCodeSymbol.unmask() 的 填充码 + + + ThoughtWorks.QRCode.Codec.Data.QRCodeBitmapImage 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 QRCodeBitmapImage.getPixel(Int32 x, Int32 y) 的 stub + + + 设置 QRCodeBitmapImage.get_Height() 的 stub + + + 设置 QRCodeBitmapImage.get_Height() 的 stub + + + 初始化 type StubQRCodeBitmapImage 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 QRCodeBitmapImage.get_Width() 的 stub + + + 设置 QRCodeBitmapImage.get_Width() 的 stub + + + 设置 QRCodeBitmapImage.getPixel(Int32 x, Int32 y) 的 存根 + + + ThoughtWorks.QRCode.Codec.Data.QRCodeImage 的存根类型 + + + 初始化 type StubQRCodeImage 的新实例 + + + 设置 QRCodeImage.getPixel(Int32 x, Int32 y) 的 stub + + + 设置 QRCodeImage.get_Height() 的 stub + + + 设置 QRCodeImage.get_Height() 的 stub + + + 设置 QRCodeImage.getPixel(Int32 x, Int32 y) 的 存根 + + + 设置 QRCodeImage.get_Width() 的 stub + + + 设置 QRCodeImage.get_Width() 的 stub + + + ThoughtWorks.QRCode.Codec.Data.QRCodeSymbol 的存根类型 + + + 初始化新实例 + + + 设置 QRCodeSymbol.get_AlignmentPattern() 的 stub + + + 设置 QRCodeSymbol.get_AlignmentPattern() 的 stub + + + 设置 QRCodeSymbol.get_Blocks() 的 stub + + + 设置 QRCodeSymbol.get_Blocks() 的 stub + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 QRCodeSymbol.get_DataCapacity() 的 stub + + + 设置 QRCodeSymbol.get_DataCapacity() 的 stub + + + 设置 QRCodeSymbol.get_ErrorCollectionLevel() 的 stub + + + 设置 QRCodeSymbol.get_ErrorCollectionLevel() 的 stub + + + 设置 QRCodeSymbol.getElement(Int32 x, Int32 y) 的 stub + + + 设置 QRCodeSymbol.get_Height() 的 stub + + + 设置 QRCodeSymbol.get_Height() 的 stub + + + 初始化 type StubQRCodeSymbol 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 QRCodeSymbol.isInFunctionPattern(Int32 targetX, Int32 targetY) 的 stub + + + 设置 QRCodeSymbol.get_MaskPatternReferer() 的 stub + + + 设置 QRCodeSymbol.get_MaskPatternRefererAsString() 的 stub + + + 设置 QRCodeSymbol.get_MaskPatternRefererAsString() 的 stub + + + 设置 QRCodeSymbol.get_MaskPatternReferer() 的 stub + + + 设置 QRCodeSymbol.get_NumErrorCollectionCode() 的 stub + + + 设置 QRCodeSymbol.get_NumErrorCollectionCode() 的 stub + + + 设置 QRCodeSymbol.get_NumRSBlocks() 的 stub + + + 设置 QRCodeSymbol.get_NumRSBlocks() 的 stub + + + 设置 QRCodeSymbol.reverseElement(Int32 x, Int32 y) 的 stub + + + 设置 QRCodeSymbol.get_Version() 的 stub + + + 设置 QRCodeSymbol.get_Version() 的 stub + + + 设置 QRCodeSymbol.get_VersionReference() 的 stub + + + 设置 QRCodeSymbol.get_VersionReference() 的 stub + + + 设置 QRCodeSymbol.get_Width() 的 stub + + + 设置 QRCodeSymbol.get_Width() 的 stub + + + 设置 QRCodeSymbol.getElement(Int32 x, Int32 y) 的 存根 + + + 设置 QRCodeSymbol.isInFunctionPattern(Int32 targetX, Int32 targetY) 的 存根 + + + 设置 QRCodeSymbol.reverseElement(Int32 x, Int32 y) 的 存根 + + + ThoughtWorks.QRCode.Codec.Ecc.BCH15_5 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 BCH15_5.get_NumCorrectedError() 的 填充码 + + + 设置 BCH15_5.addGF(Int32 arg1, Int32 arg2) 的 填充码 + + + 设置 BCH15_5.calcErrorPositionVariable(Int32[] s) 的 填充码 + + + 设置 BCH15_5.calcSyndrome(Boolean[] y) 的 填充码 + + + 设置 BCH15_5.correct() 的 填充码 + + + 设置 BCH15_5.correctErrorBit(Boolean[] y, Int32[] errorPos) 的 填充码 + + + 设置 BCH15_5.createGF16() 的 填充码 + + + 设置 BCH15_5.detectErrorBitPosition(Int32[] s) 的 填充码 + + + 设置 BCH15_5.getCode(Int32 input) 的 填充码 + + + 设置 BCH15_5.searchElement(Int32[] x) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 BCH15_5.BCH15_5(Boolean[] source) 的 填充码 + + + 设置 BCH15_5.get_NumCorrectedError() 的 填充码 + + + 设置 BCH15_5.BCH15_5() 的 填充码 + + + 设置 BCH15_5.addGF(Int32 arg1, Int32 arg2) 的 填充码 + + + 设置 BCH15_5.calcErrorPositionVariable(Int32[] s) 的 填充码 + + + 设置 BCH15_5.calcSyndrome(Boolean[] y) 的 填充码 + + + 设置 BCH15_5.correct() 的 填充码 + + + 设置 BCH15_5.correctErrorBit(Boolean[] y, Int32[] errorPos) 的 填充码 + + + 设置 BCH15_5.createGF16() 的 填充码 + + + 设置 BCH15_5.detectErrorBitPosition(Int32[] s) 的 填充码 + + + 设置 BCH15_5.getCode(Int32 input) 的 填充码 + + + 设置 BCH15_5.searchElement(Int32[] x) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Ecc.ReedSolomon 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 ReedSolomon.get_CorrectionSucceeded() 的 填充码 + + + 设置 ReedSolomon.Find_Roots() 的 填充码 + + + 设置 ReedSolomon.Modified_Berlekamp_Massey() 的 填充码 + + + 设置 ReedSolomon.get_NumCorrectedErrors() 的 填充码 + + + 设置 ReedSolomon.add_polys(Int32[] dst, Int32[] src) 的 填充码 + + + 设置 ReedSolomon.compute_discrepancy(Int32[] lambda, Int32[] S, Int32 L, Int32 n) 的 填充码 + + + 设置 ReedSolomon.compute_modified_omega() 的 填充码 + + + 设置 ReedSolomon.compute_next_omega(Int32 d, Int32[] A, Int32[] dst, Int32[] src) 的 填充码 + + + 设置 ReedSolomon.copy_poly(Int32[] dst, Int32[] src) 的 填充码 + + + 设置 ReedSolomon.correct() 的 填充码 + + + 设置 ReedSolomon.correct_errors_erasures(Int32[] codeword, Int32 csize, Int32 nerasures, Int32[] erasures) 的 填充码 + + + 设置 ReedSolomon.decode_data(Int32[] data) 的 填充码 + + + 设置 ReedSolomon.ginv(Int32 elt) 的 填充码 + + + 设置 ReedSolomon.gmult(Int32 a, Int32 b) 的 填充码 + + + 设置 ReedSolomon.init_gamma(Int32[] gamma) 的 填充码 + + + 设置 ReedSolomon.initializeGaloisTables() 的 填充码 + + + 设置 ReedSolomon.mul_z_poly(Int32[] src) 的 填充码 + + + 设置 ReedSolomon.mult_polys(Int32[] dst, Int32[] p1, Int32[] p2) 的 填充码 + + + 设置 ReedSolomon.scale_poly(Int32 k, Int32[] poly) 的 填充码 + + + 设置 ReedSolomon.zero_poly(Int32[] poly) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 ReedSolomon.ReedSolomon(Int32[] source, Int32 NPAR) 的 填充码 + + + 设置 ReedSolomon.get_CorrectionSucceeded() 的 填充码 + + + 设置 ReedSolomon.Find_Roots() 的 填充码 + + + 设置 ReedSolomon.Modified_Berlekamp_Massey() 的 填充码 + + + 设置 ReedSolomon.get_NumCorrectedErrors() 的 填充码 + + + 设置 ReedSolomon.add_polys(Int32[] dst, Int32[] src) 的 填充码 + + + 设置 ReedSolomon.compute_discrepancy(Int32[] lambda, Int32[] S, Int32 L, Int32 n) 的 填充码 + + + 设置 ReedSolomon.compute_modified_omega() 的 填充码 + + + 设置 ReedSolomon.compute_next_omega(Int32 d, Int32[] A, Int32[] dst, Int32[] src) 的 填充码 + + + 设置 ReedSolomon.copy_poly(Int32[] dst, Int32[] src) 的 填充码 + + + 设置 ReedSolomon.correct() 的 填充码 + + + 设置 ReedSolomon.correct_errors_erasures(Int32[] codeword, Int32 csize, Int32 nerasures, Int32[] erasures) 的 填充码 + + + 设置 ReedSolomon.decode_data(Int32[] data) 的 填充码 + + + 设置 ReedSolomon.ginv(Int32 elt) 的 填充码 + + + 设置 ReedSolomon.gmult(Int32 a, Int32 b) 的 填充码 + + + 设置 ReedSolomon.init_gamma(Int32[] gamma) 的 填充码 + + + 设置 ReedSolomon.initializeGaloisTables() 的 填充码 + + + 设置 ReedSolomon.mul_z_poly(Int32[] src) 的 填充码 + + + 设置 ReedSolomon.mult_polys(Int32[] dst, Int32[] p1, Int32[] p2) 的 填充码 + + + 设置 ReedSolomon.scale_poly(Int32 k, Int32[] poly) 的 填充码 + + + 设置 ReedSolomon.zero_poly(Int32[] poly) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Ecc.BCH15_5 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 BCH15_5.correct() 的 stub + + + 初始化 type StubBCH15_5 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 BCH15_5.get_NumCorrectedError() 的 stub + + + 设置 BCH15_5.get_NumCorrectedError() 的 stub + + + 设置 BCH15_5.correct() 的 存根 + + + ThoughtWorks.QRCode.Codec.Ecc.ReedSolomon 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 ReedSolomon.correct() 的 stub + + + 设置 ReedSolomon.get_CorrectionSucceeded() 的 stub + + + 设置 ReedSolomon.get_CorrectionSucceeded() 的 stub + + + 初始化 type StubReedSolomon 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 ReedSolomon.get_NumCorrectedErrors() 的 stub + + + 设置 ReedSolomon.get_NumCorrectedErrors() 的 stub + + + 设置 ReedSolomon.correct() 的 存根 + + + ThoughtWorks.QRCode.Codec.QRCodeDecoder 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 设置 QRCodeDecoder.get_AdjustPoints() 的 填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeDecoder.get_AdjustPoints() 的 填充码 + + + 设置 QRCodeDecoder.correctDataBlocks(Int32[] blocks) 的 填充码 + + + 设置 QRCodeDecoder.decodeBytes(QRCodeImage qrCodeImage) 的 填充码 + + + 设置 QRCodeDecoder.decode(QRCodeImage qrCodeImage) 的 填充码 + + + 设置 QRCodeDecoder.getDecodedByteArray(Int32[] blocks, Int32 version, Int32 numErrorCorrectionCode) 的 填充码 + + + 设置 QRCodeDecoder.getDecodedString(Int32[] blocks, Int32 version, Int32 numErrorCorrectionCode) 的 填充码 + + + 设置 QRCodeDecoder.imageToIntArray(QRCodeImage image) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 QRCodeDecoder.get_Canvas() 的 填充码 + + + 设置 QRCodeDecoder.set_Canvas(DebugCanvas value) 的 填充码 + + + 设置 QRCodeDecoder.QRCodeDecoder() 的 填充码 + + + 设置 QRCodeDecoder.correctDataBlocks(Int32[] blocks) 的 填充码 + + + 设置 QRCodeDecoder.decodeBytes(QRCodeImage qrCodeImage) 的 填充码 + + + 设置 QRCodeDecoder.decode(QRCodeImage qrCodeImage) 的 填充码 + + + 设置 QRCodeDecoder.getDecodedByteArray(Int32[] blocks, Int32 version, Int32 numErrorCorrectionCode) 的 填充码 + + + 设置 QRCodeDecoder.getDecodedString(Int32[] blocks, Int32 version, Int32 numErrorCorrectionCode) 的 填充码 + + + 设置 QRCodeDecoder.imageToIntArray(QRCodeImage image) 的 填充码 + + + ThoughtWorks.QRCode.Codec.QRCodeEncoder 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeEncoder.Encode(String content) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeBackgroundColor() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeBackgroundColor(Color value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeEncodeMode() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeEncodeMode(ENCODE_MODE value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeErrorCorrect() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeErrorCorrect(ERROR_CORRECTION value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeForegroundColor() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeForegroundColor(Color value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeScale() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeScale(Int32 value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeVersion() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeVersion(Int32 value) 的 填充码 + + + 设置 QRCodeEncoder.calQrcode(Byte[] qrcodeData) 的 填充码 + + + 设置 QRCodeEncoder.calStructureappendParity(SByte[] originaldata) 的 填充码 + + + 设置 QRCodeEncoder.setStructureappend(Int32 m, Int32 n, Int32 p) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 QRCodeEncoder.QRCodeEncoder() 的 填充码 + + + 设置 QRCodeEncoder.Encode(String content) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeBackgroundColor() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeBackgroundColor(Color value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeEncodeMode() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeEncodeMode(ENCODE_MODE value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeErrorCorrect() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeErrorCorrect(ERROR_CORRECTION value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeForegroundColor() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeForegroundColor(Color value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeScale() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeScale(Int32 value) 的 填充码 + + + 设置 QRCodeEncoder.get_QRCodeVersion() 的 填充码 + + + 设置 QRCodeEncoder.set_QRCodeVersion(Int32 value) 的 填充码 + + + 设置 QRCodeEncoder.calQrcode(Byte[] qrcodeData) 的 填充码 + + + 设置 QRCodeEncoder.calStructureappendParity(SByte[] originaldata) 的 填充码 + + + 设置 QRCodeEncoder.calculateByteArrayBits(SByte[] xa, SByte[] xb, String ind) 的 填充码 + + + 设置 QRCodeEncoder.calculateRSECC(SByte[] codewords, SByte rsEccCodewords, SByte[] rsBlockOrder, Int32 maxDataCodewords, Int32 maxCodewords) 的 填充码 + + + 设置 QRCodeEncoder.divideDataBy8Bits(Int32[] data, SByte[] bits, Int32 maxDataCodewords) 的 填充码 + + + 设置 QRCodeEncoder.selectMask(SByte[][] matrixContent, Int32 maxCodewordsBitWithRemain) 的 填充码 + + + 设置 QRCodeEncoder.setStructureappend(Int32 m, Int32 n, Int32 p) 的 填充码 + + + ThoughtWorks.QRCode.Codec.QRCodeDecoder 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 QRCodeDecoder.decodeBytes(QRCodeImage qrCodeImage) 的 stub + + + 设置 QRCodeDecoder.decode(QRCodeImage qrCodeImage) 的 stub + + + 初始化 type StubQRCodeDecoder 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 QRCodeDecoder.decode(QRCodeImage qrCodeImage) 的 存根 + + + 设置 QRCodeDecoder.decodeBytes(QRCodeImage qrCodeImage) 的 存根 + + + ThoughtWorks.QRCode.Codec.QRCodeEncoder 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubQRCodeEncoder.QRCodeBackgroundColor 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubQRCodeEncoder.QRCodeEncodeMode 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubQRCodeEncoder.QRCodeErrorCorrect 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubQRCodeEncoder.QRCodeForegroundColor 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubQRCodeEncoder.QRCodeScale 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubQRCodeEncoder.QRCodeVersion 作为具有支持字段的属性进行模拟。 + + + 设置 QRCodeEncoder.calQrcode(Byte[] qrcodeData) 的 stub + + + 设置 QRCodeEncoder.calStructureappendParity(SByte[] originaldata) 的 stub + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 QRCodeEncoder.Encode(String content) 的 存根 + + + 设置 QRCodeEncoder.Encode(String content) 的 stub + + + 初始化 type StubQRCodeEncoder 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 QRCodeEncoder.get_QRCodeBackgroundColor() 的 stub + + + 设置 QRCodeEncoder.get_QRCodeBackgroundColor() 的 stub + + + 设置 QRCodeEncoder.set_QRCodeBackgroundColor(Color value) 的 stub + + + 设置 QRCodeEncoder.get_QRCodeEncodeMode() 的 stub + + + 设置 QRCodeEncoder.get_QRCodeEncodeMode() 的 stub + + + 设置 QRCodeEncoder.set_QRCodeEncodeMode(ENCODE_MODE value) 的 stub + + + 设置 QRCodeEncoder.get_QRCodeErrorCorrect() 的 stub + + + 设置 QRCodeEncoder.get_QRCodeErrorCorrect() 的 stub + + + 设置 QRCodeEncoder.set_QRCodeErrorCorrect(ERROR_CORRECTION value) 的 stub + + + 设置 QRCodeEncoder.get_QRCodeForegroundColor() 的 stub + + + 设置 QRCodeEncoder.get_QRCodeForegroundColor() 的 stub + + + 设置 QRCodeEncoder.set_QRCodeForegroundColor(Color value) 的 stub + + + 设置 QRCodeEncoder.get_QRCodeScale() 的 stub + + + 设置 QRCodeEncoder.get_QRCodeScale() 的 stub + + + 设置 QRCodeEncoder.set_QRCodeScale(Int32 value) 的 stub + + + 设置 QRCodeEncoder.get_QRCodeVersion() 的 stub + + + 设置 QRCodeEncoder.get_QRCodeVersion() 的 stub + + + 设置 QRCodeEncoder.set_QRCodeVersion(Int32 value) 的 stub + + + 设置 QRCodeEncoder.setStructureappend(Int32 m, Int32 n, Int32 p) 的 stub + + + 设置 QRCodeEncoder.calQrcode(Byte[] qrcodeData) 的 存根 + + + 设置 QRCodeEncoder.calStructureappendParity(SByte[] originaldata) 的 存根 + + + 设置 QRCodeEncoder.setStructureappend(Int32 m, Int32 n, Int32 p) 的 存根 + + + ThoughtWorks.QRCode.Codec.Reader.QRCodeDataBlockReader 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeDataBlockReader.get_DataByte() 的 填充码 + + + 设置 QRCodeDataBlockReader.get_DataString() 的 填充码 + + + 设置 QRCodeDataBlockReader.get_NextMode() 的 填充码 + + + 设置 QRCodeDataBlockReader.get8bitByteArray(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.get8bitByteString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.getDataLength(Int32 modeIndicator) 的 填充码 + + + 设置 QRCodeDataBlockReader.getFigureString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.getKanjiString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.getNextBits(Int32 numBits) 的 填充码 + + + 设置 QRCodeDataBlockReader.getRomanAndFigureString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.guessMode(Int32 mode) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 QRCodeDataBlockReader.QRCodeDataBlockReader(Int32[] blocks, Int32 version, Int32 numErrorCorrectionCode) 的 填充码 + + + 设置 QRCodeDataBlockReader.get_DataByte() 的 填充码 + + + 设置 QRCodeDataBlockReader.get_DataString() 的 填充码 + + + 设置 QRCodeDataBlockReader.get_NextMode() 的 填充码 + + + 设置 QRCodeDataBlockReader.get8bitByteArray(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.get8bitByteString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.getDataLength(Int32 modeIndicator) 的 填充码 + + + 设置 QRCodeDataBlockReader.getFigureString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.getKanjiString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.getNextBits(Int32 numBits) 的 填充码 + + + 设置 QRCodeDataBlockReader.getRomanAndFigureString(Int32 dataLength) 的 填充码 + + + 设置 QRCodeDataBlockReader.guessMode(Int32 mode) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Reader.QRCodeImageReader 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeImageReader.applyCrossMaskingMedianFilter(Boolean[][] image, Int32 threshold) 的 填充码 + + + 设置 QRCodeImageReader.applyMedianFilter(Boolean[][] image, Int32 threshold) 的 填充码 + + + 设置 QRCodeImageReader.filterImage(Int32[][] image) 的 填充码 + + + 设置 QRCodeImageReader.getAreaModulePitch(Point start, Point end, Int32 logicalDistance) 的 填充码 + + + 设置 QRCodeImageReader.getMiddleBrightnessPerArea(Int32[][] image) 的 填充码 + + + 设置 QRCodeImageReader.getQRCodeMatrix(Boolean[][] image, SamplingGrid gridLines) 的 填充码 + + + 设置 QRCodeImageReader.getQRCodeSymbol(Int32[][] image) 的 填充码 + + + 设置 QRCodeImageReader.getQRCodeSymbolWithAdjustedGrid(Point adjust) 的 填充码 + + + 设置 QRCodeImageReader.getSamplingGrid(FinderPattern finderPattern, AlignmentPattern alignmentPattern) 的 填充码 + + + 设置 QRCodeImageReader.grayScaleToBitmap(Int32[][] grayScale) 的 填充码 + + + 设置 QRCodeImageReader.imageToGrayScale(Int32[][] image) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 QRCodeImageReader.QRCodeImageReader() 的 填充码 + + + 设置 QRCodeImageReader.QRCodeImageReader() 的 填充码 + + + 设置 QRCodeImageReader.applyCrossMaskingMedianFilter(Boolean[][] image, Int32 threshold) 的 填充码 + + + 设置 QRCodeImageReader.applyMedianFilter(Boolean[][] image, Int32 threshold) 的 填充码 + + + 设置 QRCodeImageReader.filterImage(Int32[][] image) 的 填充码 + + + 设置 QRCodeImageReader.getAreaModulePitch(Point start, Point end, Int32 logicalDistance) 的 填充码 + + + 设置 QRCodeImageReader.getMiddleBrightnessPerArea(Int32[][] image) 的 填充码 + + + 设置 QRCodeImageReader.getQRCodeMatrix(Boolean[][] image, SamplingGrid gridLines) 的 填充码 + + + 设置 QRCodeImageReader.getQRCodeSymbol(Int32[][] image) 的 填充码 + + + 设置 QRCodeImageReader.getQRCodeSymbolWithAdjustedGrid(Point adjust) 的 填充码 + + + 设置 QRCodeImageReader.getSamplingGrid(FinderPattern finderPattern, AlignmentPattern alignmentPattern) 的 填充码 + + + 设置 QRCodeImageReader.grayScaleToBitmap(Int32[][] grayScale) 的 填充码 + + + 设置 QRCodeImageReader.imageToGrayScale(Int32[][] image) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Reader.QRCodeDataBlockReader 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 QRCodeDataBlockReader.get_DataByte() 的 stub + + + 设置 QRCodeDataBlockReader.get_DataByte() 的 stub + + + 设置 QRCodeDataBlockReader.get_DataString() 的 stub + + + 设置 QRCodeDataBlockReader.get_DataString() 的 stub + + + 设置 QRCodeDataBlockReader.get8bitByteArray(Int32 dataLength) 的 stub + + + 初始化 type StubQRCodeDataBlockReader 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 QRCodeDataBlockReader.get8bitByteArray(Int32 dataLength) 的 存根 + + + ThoughtWorks.QRCode.Codec.Reader.QRCodeImageReader 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 QRCodeImageReader.getQRCodeSymbol(Int32[][] image) 的 stub + + + 设置 QRCodeImageReader.getQRCodeSymbolWithAdjustedGrid(Point adjust) 的 stub + + + 初始化 type StubQRCodeImageReader 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 QRCodeImageReader.getQRCodeSymbol(Int32[][] image) 的 存根 + + + 设置 QRCodeImageReader.getQRCodeSymbolWithAdjustedGrid(Point adjust) 的 存根 + + + ThoughtWorks.QRCode.Codec.Reader.Pattern.AlignmentPattern 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 AlignmentPattern.get_LogicalDistance() 的 填充码 + + + 设置 AlignmentPattern.getCenter() 的 填充码 + + + 设置 AlignmentPattern.setCenter(Point[][] center) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 AlignmentPattern.AlignmentPattern(Point[][] center, Int32 patternDistance) 的 填充码 + + + 设置 AlignmentPattern.get_LogicalDistance() 的 填充码 + + + 设置 AlignmentPattern.AlignmentPattern() 的 填充码 + + + 设置 AlignmentPattern.findAlignmentPattern(Boolean[][] image, FinderPattern finderPattern) 的 填充码 + + + 设置 AlignmentPattern.getCenter() 的 填充码 + + + 设置 AlignmentPattern.getCenter(Boolean[][] image, FinderPattern finderPattern, Point[][] logicalCenters) 的 填充码 + + + 设置 AlignmentPattern.getLogicalCenter(FinderPattern finderPattern) 的 填充码 + + + 设置 AlignmentPattern.getPrecisionCenter(Boolean[][] image, Point targetPoint) 的 填充码 + + + 设置 AlignmentPattern.setCenter(Point[][] center) 的 填充码 + + + 设置 AlignmentPattern.targetPointOnTheCorner(Boolean[][] image, Int32 x, Int32 y, Int32 nx, Int32 ny) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Reader.Pattern.FinderPattern 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 FinderPattern.get_SqrtNumModules() 的 填充码 + + + 设置 FinderPattern.get_Version() 的 填充码 + + + 设置 FinderPattern.getAngle() 的 填充码 + + + 设置 FinderPattern.getCenter() 的 填充码 + + + 设置 FinderPattern.getCenter(Int32 position) 的 填充码 + + + 设置 FinderPattern.getModuleSize() 的 填充码 + + + 设置 FinderPattern.getModuleSize(Int32 place) 的 填充码 + + + 设置 FinderPattern.getWidth(Int32 position) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 FinderPattern.FinderPattern(Point[] center, Int32 version, Int32[] sincos, Int32[] width, Int32[] moduleSize) 的 填充码 + + + 设置 FinderPattern.get_SqrtNumModules() 的 填充码 + + + 设置 FinderPattern.FinderPattern() 的 填充码 + + + 设置 FinderPattern.get_Version() 的 填充码 + + + 设置 FinderPattern.calcExactVersion(Point[] centers, Int32[] angle, Int32[] moduleSize, Boolean[][] image) 的 填充码 + + + 设置 FinderPattern.calcRoughVersion(Point[] center, Int32[] width) 的 填充码 + + + 设置 FinderPattern.cantNeighbor(Line line1, Line line2) 的 填充码 + + + 设置 FinderPattern.checkPattern(Int32[] buffer, Int32 pointer) 的 填充码 + + + 设置 FinderPattern.checkVersionInfo(Boolean[] target) 的 填充码 + + + 设置 FinderPattern.findFinderPattern(Boolean[][] image) 的 填充码 + + + 设置 FinderPattern.findLineAcross(Boolean[][] image) 的 填充码 + + + 设置 FinderPattern.findLineCross(Line[] lineAcross) 的 填充码 + + + 设置 FinderPattern.getAngle() 的 填充码 + + + 设置 FinderPattern.getAngle(Point[] centers) 的 填充码 + + + 设置 FinderPattern.getCenter() 的 填充码 + + + 设置 FinderPattern.getCenter(Int32 position) 的 填充码 + + + 设置 FinderPattern.getCenter(Line[] crossLines) 的 填充码 + + + 设置 FinderPattern.getModuleSize() 的 填充码 + + + 设置 FinderPattern.getModuleSize(Int32 place) 的 填充码 + + + 设置 FinderPattern.getPointAtSide(Point[] points, Int32 side1, Int32 side2) 的 填充码 + + + 设置 FinderPattern.getURQuadant(Int32[] angle) 的 填充码 + + + 设置 FinderPattern.getWidth(Boolean[][] image, Point[] centers, Int32[] sincos) 的 填充码 + + + 设置 FinderPattern.getWidth(Int32 position) 的 填充码 + + + 设置 FinderPattern.sort(Point[] centers, Int32[] angle) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Reader.Pattern.LogicalSeed 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 LogicalSeed.LogicalSeed() 的 填充码 + + + 设置 LogicalSeed.LogicalSeed() 的 填充码 + + + 设置 LogicalSeed.getSeed(Int32 version) 的 填充码 + + + 设置 LogicalSeed.getSeed(Int32 version, Int32 patternNumber) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Reader.Pattern.LogicalSeed 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubLogicalSeed 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + ThoughtWorks.QRCode.Codec.Util.Color_Fields 的填充码类型 + + + 初始化新的填充码实例 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 Color_Fields.Color_Fields() 的 填充码 + + + ThoughtWorks.QRCode.Codec.Util.ConsoleCanvas 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 ConsoleCanvas.drawCross(Point point, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawLine(Line line, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawLines(Line[] lines, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawMatrix(Boolean[][] matrix) 的 填充码 + + + 设置 ConsoleCanvas.drawPoint(Point point, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawPoints(Point[] points, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawPolygon(Point[] points, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.println(String str) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 ConsoleCanvas.ConsoleCanvas() 的 填充码 + + + 设置 ConsoleCanvas.drawCross(Point point, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawLine(Line line, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawLines(Line[] lines, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawMatrix(Boolean[][] matrix) 的 填充码 + + + 设置 ConsoleCanvas.drawPoint(Point point, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawPoints(Point[] points, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.drawPolygon(Point[] points, Int32 color) 的 填充码 + + + 设置 ConsoleCanvas.println(String str) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Util.ContentConverter 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 ContentConverter.ContentConverter() 的 填充码 + + + 设置 ContentConverter.ContentConverter() 的 填充码 + + + 设置 ContentConverter.convertDocomoAddressBook(String targetString) 的 填充码 + + + 设置 ContentConverter.convertDocomoBookmark(String targetString) 的 填充码 + + + 设置 ContentConverter.convertDocomoMailto(String s) 的 填充码 + + + 设置 ContentConverter.convert(String targetString) 的 填充码 + + + 设置 ContentConverter.removeString(String s, String s1) 的 填充码 + + + 设置 ContentConverter.replaceString(String s, String s1, String s2) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Util.DebugCanvasAdapter 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 DebugCanvasAdapter.drawCross(Point point, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawLine(Line line, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawLines(Line[] lines, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawMatrix(Boolean[][] matrix) 的 填充码 + + + 设置 DebugCanvasAdapter.drawPoint(Point point, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawPoints(Point[] points, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawPolygon(Point[] points, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.println(String string_Renamed) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 DebugCanvasAdapter.DebugCanvasAdapter() 的 填充码 + + + 设置 DebugCanvasAdapter.drawCross(Point point, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawLine(Line line, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawLines(Line[] lines, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawMatrix(Boolean[][] matrix) 的 填充码 + + + 设置 DebugCanvasAdapter.drawPoint(Point point, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawPoints(Point[] points, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.drawPolygon(Point[] points, Int32 color) 的 填充码 + + + 设置 DebugCanvasAdapter.println(String string_Renamed) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Util.QRCodeUtility 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 QRCodeUtility.AsciiStringToByteArray(String str) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 QRCodeUtility.QRCodeUtility() 的 填充码 + + + 设置 QRCodeUtility.FromASCIIByteArray(Byte[] characters) 的 填充码 + + + 设置 QRCodeUtility.FromUnicodeByteArray(Byte[] characters) 的 填充码 + + + 设置 QRCodeUtility.IsUniCode(String value) 的 填充码 + + + 设置 QRCodeUtility.IsUnicode(Byte[] byteData) 的 填充码 + + + 设置 QRCodeUtility.UnicodeStringToByteArray(String str) 的 填充码 + + + 设置 QRCodeUtility.sqrt(Int32 val) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Util.SystemUtils 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 SystemUtils.SystemUtils() 的 填充码 + + + 设置 SystemUtils.ReadInput(Stream sourceStream, SByte[] target, Int32 start, Int32 count) 的 填充码 + + + 设置 SystemUtils.ReadInput(TextReader sourceTextReader, Int16[] target, Int32 start, Int32 count) 的 填充码 + + + 设置 SystemUtils.ToByteArray(Object[] tempObjectArray) 的 填充码 + + + 设置 SystemUtils.ToByteArray(SByte[] sbyteArray) 的 填充码 + + + 设置 SystemUtils.ToByteArray(String sourceString) 的 填充码 + + + 设置 SystemUtils.ToCharArray(Byte[] byteArray) 的 填充码 + + + 设置 SystemUtils.ToCharArray(SByte[] sByteArray) 的 填充码 + + + 设置 SystemUtils.ToSByteArray(Byte[] byteArray) 的 填充码 + + + 设置 SystemUtils.URShift(Int32 number, Int32 bits) 的 填充码 + + + 设置 SystemUtils.URShift(Int32 number, Int64 bits) 的 填充码 + + + 设置 SystemUtils.URShift(Int64 number, Int32 bits) 的 填充码 + + + 设置 SystemUtils.URShift(Int64 number, Int64 bits) 的 填充码 + + + 设置 SystemUtils.WriteStackTrace(Exception throwable, TextWriter stream) 的 填充码 + + + ThoughtWorks.QRCode.Codec.Util.Color 的存根类型 + + + 初始化 type StubColor 的新实例 + + + ThoughtWorks.QRCode.Codec.Util.ConsoleCanvas 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubConsoleCanvas 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + ThoughtWorks.QRCode.Codec.Util.ContentConverter 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubContentConverter 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + ThoughtWorks.QRCode.Codec.Util.DebugCanvas 的存根类型 + + + 初始化 type StubDebugCanvas 的新实例 + + + 设置 DebugCanvas.drawCross(Point point, Int32 color) 的 stub + + + 设置 DebugCanvas.drawLine(Line line, Int32 color) 的 stub + + + 设置 DebugCanvas.drawLines(Line[] lines, Int32 color) 的 stub + + + 设置 DebugCanvas.drawMatrix(Boolean[][] matrix) 的 stub + + + 设置 DebugCanvas.drawPoint(Point point, Int32 color) 的 stub + + + 设置 DebugCanvas.drawPoints(Point[] points, Int32 color) 的 stub + + + 设置 DebugCanvas.drawPolygon(Point[] points, Int32 color) 的 stub + + + 设置 DebugCanvas.println(String str) 的 stub + + + 设置 DebugCanvas.drawCross(Point point, Int32 color) 的 存根 + + + 设置 DebugCanvas.drawLine(Line line, Int32 color) 的 存根 + + + 设置 DebugCanvas.drawLines(Line[] lines, Int32 color) 的 存根 + + + 设置 DebugCanvas.drawMatrix(Boolean[][] matrix) 的 存根 + + + 设置 DebugCanvas.drawPoint(Point point, Int32 color) 的 存根 + + + 设置 DebugCanvas.drawPoints(Point[] points, Int32 color) 的 存根 + + + 设置 DebugCanvas.drawPolygon(Point[] points, Int32 color) 的 存根 + + + 设置 DebugCanvas.println(String str) 的 存根 + + + ThoughtWorks.QRCode.Codec.Util.DebugCanvasAdapter 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 DebugCanvasAdapter.drawCross(Point point, Int32 color) 的 stub + + + 设置 DebugCanvasAdapter.drawLine(Line line, Int32 color) 的 stub + + + 设置 DebugCanvasAdapter.drawLines(Line[] lines, Int32 color) 的 stub + + + 设置 DebugCanvasAdapter.drawMatrix(Boolean[][] matrix) 的 stub + + + 设置 DebugCanvasAdapter.drawPoint(Point point, Int32 color) 的 stub + + + 设置 DebugCanvasAdapter.drawPoints(Point[] points, Int32 color) 的 stub + + + 设置 DebugCanvasAdapter.drawPolygon(Point[] points, Int32 color) 的 stub + + + 初始化 type StubDebugCanvasAdapter 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 DebugCanvasAdapter.println(String string_Renamed) 的 stub + + + 设置 DebugCanvasAdapter.drawCross(Point point, Int32 color) 的 存根 + + + 设置 DebugCanvasAdapter.drawLine(Line line, Int32 color) 的 存根 + + + 设置 DebugCanvasAdapter.drawLines(Line[] lines, Int32 color) 的 存根 + + + 设置 DebugCanvasAdapter.drawMatrix(Boolean[][] matrix) 的 存根 + + + 设置 DebugCanvasAdapter.drawPoint(Point point, Int32 color) 的 存根 + + + 设置 DebugCanvasAdapter.drawPoints(Point[] points, Int32 color) 的 存根 + + + 设置 DebugCanvasAdapter.drawPolygon(Point[] points, Int32 color) 的 存根 + + + 设置 DebugCanvasAdapter.println(String string_Renamed) 的 存根 + + + ThoughtWorks.QRCode.Codec.Util.QRCodeUtility 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubQRCodeUtility 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + ThoughtWorks.QRCode.Codec.Util.SystemUtils 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubSystemUtils 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + ThoughtWorks.QRCode.ExceptionHandler.AlignmentPatternNotFoundException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 AlignmentPatternNotFoundException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 AlignmentPatternNotFoundException.AlignmentPatternNotFoundException(String message) 的 填充码 + + + 设置 AlignmentPatternNotFoundException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.DecodingFailedException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 DecodingFailedException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 DecodingFailedException.DecodingFailedException(String message) 的 填充码 + + + 设置 DecodingFailedException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.FinderPatternNotFoundException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 FinderPatternNotFoundException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 FinderPatternNotFoundException.FinderPatternNotFoundException(String message) 的 填充码 + + + 设置 FinderPatternNotFoundException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.InvalidDataBlockException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 InvalidDataBlockException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 InvalidDataBlockException.InvalidDataBlockException(String message) 的 填充码 + + + 设置 InvalidDataBlockException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.InvalidVersionException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 InvalidVersionException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 InvalidVersionException.InvalidVersionException(String message) 的 填充码 + + + 设置 InvalidVersionException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.InvalidVersionInfoException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 InvalidVersionInfoException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 InvalidVersionInfoException.InvalidVersionInfoException(String message) 的 填充码 + + + 设置 InvalidVersionInfoException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.SymbolNotFoundException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 SymbolNotFoundException.get_Message() 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 SymbolNotFoundException.SymbolNotFoundException(String message) 的 填充码 + + + 设置 SymbolNotFoundException.get_Message() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.VersionInformationException 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 将接口的成员绑定到此填充码。 + + + 设置 VersionInformationException.VersionInformationException() 的 填充码 + + + ThoughtWorks.QRCode.ExceptionHandler.AlignmentPatternNotFoundException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubAlignmentPatternNotFoundException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubAlignmentPatternNotFoundException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubAlignmentPatternNotFoundException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 AlignmentPatternNotFoundException.get_Message() 的 stub + + + 设置 AlignmentPatternNotFoundException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.DecodingFailedException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubDecodingFailedException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubDecodingFailedException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubDecodingFailedException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 DecodingFailedException.get_Message() 的 stub + + + 设置 DecodingFailedException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.FinderPatternNotFoundException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubFinderPatternNotFoundException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubFinderPatternNotFoundException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 Exception.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 Exception.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubFinderPatternNotFoundException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 FinderPatternNotFoundException.get_Message() 的 stub + + + 设置 FinderPatternNotFoundException.get_Message() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.InvalidDataBlockException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubInvalidDataBlockException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubInvalidDataBlockException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubInvalidDataBlockException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 InvalidDataBlockException.get_Message() 的 stub + + + 设置 InvalidDataBlockException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.InvalidVersionException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubInvalidVersionException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubInvalidVersionException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubInvalidVersionException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 InvalidVersionException.get_Message() 的 stub + + + 设置 InvalidVersionException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.InvalidVersionInfoException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubInvalidVersionInfoException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubInvalidVersionInfoException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubInvalidVersionInfoException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 InvalidVersionInfoException.get_Message() 的 stub + + + 设置 InvalidVersionInfoException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.SymbolNotFoundException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubSymbolNotFoundException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubSymbolNotFoundException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubSymbolNotFoundException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 SymbolNotFoundException.get_Message() 的 stub + + + 设置 SymbolNotFoundException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.ExceptionHandler.VersionInformationException 的存根类型 + + + 初始化新实例 + + + 附加委托以将 StubVersionInformationException.HelpLink 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubVersionInformationException.Source 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.get_Data() 的 stub + + + 设置 Exception.GetBaseException() 的 存根 + + + 设置 Exception.GetBaseException() 的 stub + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 存根 + + + 设置 ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.get_HelpLink() 的 stub + + + 设置 Exception.set_HelpLink(String value) 的 stub + + + 初始化 type StubVersionInformationException 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 ArgumentException.get_Message() 的 stub + + + 设置 ArgumentException.get_Message() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 ArgumentException.get_ParamName() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.get_Source() 的 stub + + + 设置 Exception.set_Source(String value) 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.get_StackTrace() 的 stub + + + 设置 Exception.ToString() 的 存根 + + + 设置 Exception.ToString() 的 stub + + + ThoughtWorks.QRCode.Geom.Axis 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 Axis.set_ModulePitch(Int32 value) 的 填充码 + + + 设置 Axis.set_Origin(Point value) 的 填充码 + + + 设置 Axis.translate(Int32 moveX, Int32 moveY) 的 填充码 + + + 设置 Axis.translate(Point offset) 的 填充码 + + + 设置 Axis.translate(Point origin, Int32 moveX, Int32 moveY) 的 填充码 + + + 设置 Axis.translate(Point origin, Int32 modulePitch, Int32 moveX, Int32 moveY) 的 填充码 + + + 设置 Axis.translate(Point origin, Point offset) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 Axis.Axis(Int32[] angle, Int32 modulePitch) 的 填充码 + + + 设置 Axis.set_ModulePitch(Int32 value) 的 填充码 + + + 设置 Axis.set_Origin(Point value) 的 填充码 + + + 设置 Axis.translate(Int32 moveX, Int32 moveY) 的 填充码 + + + 设置 Axis.translate(Point offset) 的 填充码 + + + 设置 Axis.translate(Point origin, Int32 moveX, Int32 moveY) 的 填充码 + + + 设置 Axis.translate(Point origin, Int32 modulePitch, Int32 moveX, Int32 moveY) 的 填充码 + + + 设置 Axis.translate(Point origin, Point offset) 的 填充码 + + + ThoughtWorks.QRCode.Geom.Line 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 Line.get_Center() 的 填充码 + + + 设置 Line.get_Horizontal() 的 填充码 + + + 设置 Line.get_Length() 的 填充码 + + + 设置 Line.ToString() 的 填充码 + + + 设置 Line.get_Vertical() 的 填充码 + + + 设置 Line.getP1() 的 填充码 + + + 设置 Line.getP2() 的 填充码 + + + 设置 Line.setLine(Int32 x1, Int32 y1, Int32 x2, Int32 y2) 的 填充码 + + + 设置 Line.setP1(Int32 x1, Int32 y1) 的 填充码 + + + 设置 Line.setP1(Point p1) 的 填充码 + + + 设置 Line.setP2(Int32 x2, Int32 y2) 的 填充码 + + + 设置 Line.setP2(Point p2) 的 填充码 + + + 设置 Line.translate(Int32 dx, Int32 dy) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 Line.get_Center() 的 填充码 + + + 设置 Line.Line() 的 填充码 + + + 设置 Line.Line(Int32 x1, Int32 y1, Int32 x2, Int32 y2) 的 填充码 + + + 设置 Line.Line(Point p1, Point p2) 的 填充码 + + + 设置 Line.get_Horizontal() 的 填充码 + + + 设置 Line.get_Length() 的 填充码 + + + 设置 Line.ToString() 的 填充码 + + + 设置 Line.get_Vertical() 的 填充码 + + + 设置 Line.getLongest(Line[] lines) 的 填充码 + + + 设置 Line.getP1() 的 填充码 + + + 设置 Line.getP2() 的 填充码 + + + 设置 Line.isCross(Line line1, Line line2) 的 填充码 + + + 设置 Line.isNeighbor(Line line1, Line line2) 的 填充码 + + + 设置 Line.setLine(Int32 x1, Int32 y1, Int32 x2, Int32 y2) 的 填充码 + + + 设置 Line.setP1(Int32 x1, Int32 y1) 的 填充码 + + + 设置 Line.setP1(Point p1) 的 填充码 + + + 设置 Line.setP2(Int32 x2, Int32 y2) 的 填充码 + + + 设置 Line.setP2(Point p2) 的 填充码 + + + 设置 Line.translate(Int32 dx, Int32 dy) 的 填充码 + + + ThoughtWorks.QRCode.Geom.Point 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 Point.ToString() 的 填充码 + + + 设置 Point.get_X() 的 填充码 + + + 设置 Point.set_X(Int32 value) 的 填充码 + + + 设置 Point.get_Y() 的 填充码 + + + 设置 Point.set_Y(Int32 value) 的 填充码 + + + 设置 Point.distanceOf(Point other) 的 填充码 + + + 设置 Point.equals(Point compare) 的 填充码 + + + 设置 Point.set_Renamed(Int32 x, Int32 y) 的 填充码 + + + 设置 Point.translate(Int32 dx, Int32 dy) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 Point.Point() 的 填充码 + + + 设置 Point.Point(Int32 x, Int32 y) 的 填充码 + + + 设置 Point.ToString() 的 填充码 + + + 设置 Point.get_X() 的 填充码 + + + 设置 Point.set_X(Int32 value) 的 填充码 + + + 设置 Point.get_Y() 的 填充码 + + + 设置 Point.set_Y(Int32 value) 的 填充码 + + + 设置 Point.distanceOf(Point other) 的 填充码 + + + 设置 Point.equals(Point compare) 的 填充码 + + + 设置 Point.getCenter(Point p1, Point p2) 的 填充码 + + + 设置 Point.set_Renamed(Int32 x, Int32 y) 的 填充码 + + + 设置 Point.translate(Int32 dx, Int32 dy) 的 填充码 + + + ThoughtWorks.QRCode.Geom.SamplingGrid 的填充码类型 + + + 初始化新的填充码实例 + + + 初始化给定实例的新填充码 + + + 为所有实例成员定义填充码 + + + 设置 SamplingGrid.get_TotalHeight() 的 填充码 + + + 设置 SamplingGrid.get_TotalWidth() 的 填充码 + + + 设置 SamplingGrid.adjust(Point adjust) 的 填充码 + + + 设置 SamplingGrid.getHeight() 的 填充码 + + + 设置 SamplingGrid.getHeight(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.getWidth() 的 填充码 + + + 设置 SamplingGrid.getWidth(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.getX(Int32 ax, Int32 x) 的 填充码 + + + 设置 SamplingGrid.getXLine(Int32 ax, Int32 ay, Int32 x) 的 填充码 + + + 设置 SamplingGrid.getXLines(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.getY(Int32 ay, Int32 y) 的 填充码 + + + 设置 SamplingGrid.getYLine(Int32 ax, Int32 ay, Int32 y) 的 填充码 + + + 设置 SamplingGrid.getYLines(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.initGrid(Int32 ax, Int32 ay, Int32 width, Int32 height) 的 填充码 + + + 设置 SamplingGrid.setXLine(Int32 ax, Int32 ay, Int32 x, Line line) 的 填充码 + + + 设置 SamplingGrid.setYLine(Int32 ax, Int32 ay, Int32 y, Line line) 的 填充码 + + + 为已填充的类型的所有方法分配“Current”行为 + + + 为已填充的类型的所有方法分配“NotImplemented”行为 + + + 为已填充的类型的所有方法分配行为 + + + 设置 SamplingGrid.SamplingGrid(Int32 sqrtNumArea) 的 填充码 + + + 设置 SamplingGrid.get_TotalHeight() 的 填充码 + + + 设置 SamplingGrid.get_TotalWidth() 的 填充码 + + + 设置 SamplingGrid.adjust(Point adjust) 的 填充码 + + + 设置 SamplingGrid.getHeight() 的 填充码 + + + 设置 SamplingGrid.getHeight(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.getWidth() 的 填充码 + + + 设置 SamplingGrid.getWidth(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.getX(Int32 ax, Int32 x) 的 填充码 + + + 设置 SamplingGrid.getXLine(Int32 ax, Int32 ay, Int32 x) 的 填充码 + + + 设置 SamplingGrid.getXLines(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.getY(Int32 ay, Int32 y) 的 填充码 + + + 设置 SamplingGrid.getYLine(Int32 ax, Int32 ay, Int32 y) 的 填充码 + + + 设置 SamplingGrid.getYLines(Int32 ax, Int32 ay) 的 填充码 + + + 设置 SamplingGrid.initGrid(Int32 ax, Int32 ay, Int32 width, Int32 height) 的 填充码 + + + 设置 SamplingGrid.setXLine(Int32 ax, Int32 ay, Int32 x, Line line) 的 填充码 + + + 设置 SamplingGrid.setYLine(Int32 ax, Int32 ay, Int32 y, Line line) 的 填充码 + + + ThoughtWorks.QRCode.Geom.Axis 的存根类型 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 初始化 type StubAxis 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Axis.set_ModulePitch(Int32 value) 的 stub + + + 设置 Axis.set_ModulePitch(Int32 value) 的 stub + + + 设置 Axis.set_Origin(Point value) 的 stub + + + 设置 Axis.set_Origin(Point value) 的 stub + + + 设置 Axis.translate(Int32 moveX, Int32 moveY) 的 stub + + + 设置 Axis.translate(Point offset) 的 stub + + + 设置 Axis.translate(Point origin, Int32 moveX, Int32 moveY) 的 stub + + + 设置 Axis.translate(Point origin, Int32 modulePitch, Int32 moveX, Int32 moveY) 的 stub + + + 设置 Axis.translate(Point origin, Point offset) 的 stub + + + 设置 Axis.translate(Point offset) 的 存根 + + + 设置 Axis.translate(Point origin, Point offset) 的 存根 + + + 设置 Axis.translate(Int32 moveX, Int32 moveY) 的 存根 + + + 设置 Axis.translate(Point origin, Int32 moveX, Int32 moveY) 的 存根 + + + 设置 Axis.translate(Point origin, Int32 modulePitch, Int32 moveX, Int32 moveY) 的 存根 + + + ThoughtWorks.QRCode.Geom.Line 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 初始化新实例 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Line.get_Center() 的 stub + + + 设置 Line.get_Center() 的 stub + + + 设置 Line.getP1() 的 stub + + + 设置 Line.getP2() 的 stub + + + 设置 Line.get_Horizontal() 的 stub + + + 设置 Line.get_Horizontal() 的 stub + + + 初始化 type StubLine 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Line.get_Length() 的 stub + + + 设置 Line.get_Length() 的 stub + + + 设置 Line.setLine(Int32 x1, Int32 y1, Int32 x2, Int32 y2) 的 stub + + + 设置 Line.setP1(Int32 x1, Int32 y1) 的 stub + + + 设置 Line.setP1(Point p1) 的 stub + + + 设置 Line.setP2(Int32 x2, Int32 y2) 的 stub + + + 设置 Line.setP2(Point p2) 的 stub + + + 设置 Line.ToString() 的 存根 + + + 设置 Line.ToString() 的 stub + + + 设置 Line.translate(Int32 dx, Int32 dy) 的 stub + + + 设置 Line.get_Vertical() 的 stub + + + 设置 Line.get_Vertical() 的 stub + + + 设置 Line.getP1() 的 存根 + + + 设置 Line.getP2() 的 存根 + + + 设置 Line.setLine(Int32 x1, Int32 y1, Int32 x2, Int32 y2) 的 存根 + + + 设置 Line.setP1(Point p1) 的 存根 + + + 设置 Line.setP1(Int32 x1, Int32 y1) 的 存根 + + + 设置 Line.setP2(Point p2) 的 存根 + + + 设置 Line.setP2(Int32 x2, Int32 y2) 的 存根 + + + 设置 Line.translate(Int32 dx, Int32 dy) 的 存根 + + + ThoughtWorks.QRCode.Geom.Point 的存根类型 + + + 初始化新实例 + + + 初始化新实例 + + + 附加委托以将 StubPoint.X 作为具有支持字段的属性进行模拟。 + + + 附加委托以将 StubPoint.Y 作为具有支持字段的属性进行模拟。 + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 Point.distanceOf(Point other) 的 stub + + + 初始化 type StubPoint 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 Point.set_Renamed(Int32 x, Int32 y) 的 stub + + + 设置 Point.ToString() 的 存根 + + + 设置 Point.ToString() 的 stub + + + 设置 Point.translate(Int32 dx, Int32 dy) 的 stub + + + 设置 Point.get_X() 的 stub + + + 设置 Point.get_X() 的 stub + + + 设置 Point.set_X(Int32 value) 的 stub + + + 设置 Point.get_Y() 的 stub + + + 设置 Point.get_Y() 的 stub + + + 设置 Point.set_Y(Int32 value) 的 stub + + + 设置 Point.distanceOf(Point other) 的 存根 + + + 设置 Point.set_Renamed(Int32 x, Int32 y) 的 存根 + + + 设置 Point.translate(Int32 dx, Int32 dy) 的 存根 + + + ThoughtWorks.QRCode.Geom.SamplingGrid 的存根类型 + + + 初始化新实例 + + + 设置 SamplingGrid.adjust(Point adjust) 的 stub + + + 获取或设置一个值,该值指示是否应调用基方法而不调用回退行为 + + + 设置 SamplingGrid.getHeight() 的 stub + + + 设置 SamplingGrid.getHeight(Int32 ax, Int32 ay) 的 stub + + + 设置 SamplingGrid.getWidth() 的 stub + + + 设置 SamplingGrid.getWidth(Int32 ax, Int32 ay) 的 stub + + + 设置 SamplingGrid.getX(Int32 ax, Int32 x) 的 stub + + + 设置 SamplingGrid.getXLine(Int32 ax, Int32 ay, Int32 x) 的 stub + + + 设置 SamplingGrid.getXLines(Int32 ax, Int32 ay) 的 stub + + + 设置 SamplingGrid.getY(Int32 ay, Int32 y) 的 stub + + + 设置 SamplingGrid.getYLine(Int32 ax, Int32 ay, Int32 y) 的 stub + + + 设置 SamplingGrid.getYLines(Int32 ax, Int32 ay) 的 stub + + + 设置 SamplingGrid.initGrid(Int32 ax, Int32 ay, Int32 width, Int32 height) 的 stub + + + 初始化 type StubSamplingGrid 的新实例 + + + 获取或设置实例行为。 + + + 获取或设置实例观察者。 + + + 设置 SamplingGrid.setXLine(Int32 ax, Int32 ay, Int32 x, Line line) 的 stub + + + 设置 SamplingGrid.setYLine(Int32 ax, Int32 ay, Int32 y, Line line) 的 stub + + + 设置 SamplingGrid.get_TotalHeight() 的 stub + + + 设置 SamplingGrid.get_TotalHeight() 的 stub + + + 设置 SamplingGrid.get_TotalWidth() 的 stub + + + 设置 SamplingGrid.get_TotalWidth() 的 stub + + + 设置 SamplingGrid.adjust(Point adjust) 的 存根 + + + 设置 SamplingGrid.getHeight() 的 存根 + + + 设置 SamplingGrid.getHeight(Int32 ax, Int32 ay) 的 存根 + + + 设置 SamplingGrid.getWidth() 的 存根 + + + 设置 SamplingGrid.getWidth(Int32 ax, Int32 ay) 的 存根 + + + 设置 SamplingGrid.getX(Int32 ax, Int32 x) 的 存根 + + + 设置 SamplingGrid.getXLine(Int32 ax, Int32 ay, Int32 x) 的 存根 + + + 设置 SamplingGrid.getXLines(Int32 ax, Int32 ay) 的 存根 + + + 设置 SamplingGrid.getY(Int32 ay, Int32 y) 的 存根 + + + 设置 SamplingGrid.getYLine(Int32 ax, Int32 ay, Int32 y) 的 存根 + + + 设置 SamplingGrid.getYLines(Int32 ax, Int32 ay) 的 存根 + + + 设置 SamplingGrid.initGrid(Int32 ax, Int32 ay, Int32 width, Int32 height) 的 存根 + + + 设置 SamplingGrid.setXLine(Int32 ax, Int32 ay, Int32 x, Line line) 的 存根 + + + 设置 SamplingGrid.setYLine(Int32 ax, Int32 ay, Int32 y, Line line) 的 存根 + + + diff --git a/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.dll b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.dll new file mode 100644 index 00000000..d5da6f99 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/ThoughtWorks.QRCode.dll differ diff --git a/SGGL/FineUIPro/Reference BLL/zh-Hans/Microsoft.QualityTools.Testing.Fakes.resources.dll b/SGGL/FineUIPro/Reference BLL/zh-Hans/Microsoft.QualityTools.Testing.Fakes.resources.dll new file mode 100644 index 00000000..2c27c495 Binary files /dev/null and b/SGGL/FineUIPro/Reference BLL/zh-Hans/Microsoft.QualityTools.Testing.Fakes.resources.dll differ diff --git a/SGGL/Model/Model.csproj b/SGGL/Model/Model.csproj index 6f586121..d63a39dd 100644 --- a/SGGL/Model/Model.csproj +++ b/SGGL/Model/Model.csproj @@ -189,6 +189,20 @@
+ + + + + + + + + + + + + +