当前位置: 首页>>代码示例>>C#>>正文


C# PortReader类代码示例

本文整理汇总了C#中PortReader的典型用法代码示例。如果您正苦于以下问题:C# PortReader类的具体用法?C# PortReader怎么用?C# PortReader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


PortReader类属于命名空间,在下文中一共展示了PortReader类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: readFromStream

 public static bool readFromStream(PortReader portable, SWIGTYPE_p_yarp__os__InputStream arg1)
 {
     bool ret = yarpPINVOKE.ConnectionReader_readFromStream(PortReader.getCPtr(portable), SWIGTYPE_p_yarp__os__InputStream.getCPtr(arg1));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:6,代码来源:ConnectionReader.cs

示例2: forgetObjectBase

 public virtual bool forgetObjectBase(PortReader obj, PortWriter wrapper)
 {
     bool ret = yarpPINVOKE.PortReaderBufferBase_forgetObjectBase(swigCPtr, PortReader.getCPtr(obj), PortWriter.getCPtr(wrapper));
     return ret;
 }
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:PortReaderBufferBase.cs

示例3: setAdminReader

 public override void setAdminReader(PortReader reader)
 {
     yarpPINVOKE.BufferedPortImageInt_setAdminReader(swigCPtr, PortReader.getCPtr(reader));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:BufferedPortImageInt.cs

示例4: setReplier

 public new void setReplier(PortReader reader)
 {
     yarpPINVOKE.BufferedPortImageMono_setReplier(swigCPtr, PortReader.getCPtr(reader));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:BufferedPortImageMono.cs

示例5: write

 public new bool write(PortReader reader)
 {
     bool ret = yarpPINVOKE.Bottle_write__SWIG_2(swigCPtr, PortReader.getCPtr(reader));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:6,代码来源:Bottle.cs

示例6: read

 public new bool read(PortReader reader, bool willReply)
 {
     bool ret = yarpPINVOKE.RpcServer_read__SWIG_0(swigCPtr, PortReader.getCPtr(reader), willReply);
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:6,代码来源:RpcServer.cs

示例7: write

 public static new bool write(string port_name, PortWriter cmd, PortReader reply)
 {
     bool ret = yarpPINVOKE.NetworkBase_write__SWIG_5(port_name, PortWriter.getCPtr(cmd), PortReader.getCPtr(reply));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:johnty,项目名称:YarpUnity,代码行数:6,代码来源:NetworkBase.cs

示例8: setReader

 public override void setReader(PortReader reader)
 {
     yarpPINVOKE.Port_setReader(swigCPtr, PortReader.getCPtr(reader));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:Port.cs

示例9: getCPtr

 internal static HandleRef getCPtr(PortReader obj)
 {
     return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:4,代码来源:PortReader.cs

示例10: getEnvelope

 public override bool getEnvelope(PortReader envelope)
 {
     bool ret = yarpPINVOKE.AbstractContactable_getEnvelope(swigCPtr, PortReader.getCPtr(envelope));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:6,代码来源:AbstractContactable.cs

示例11: setAdminReader

 public override void setAdminReader(PortReader reader)
 {
     yarpPINVOKE.AbstractContactable_setAdminReader(swigCPtr, PortReader.getCPtr(reader));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:AbstractContactable.cs

示例12: getEnvelope

 public virtual bool getEnvelope(PortReader envelope)
 {
     bool ret = yarpPINVOKE.PortReaderBufferBase_getEnvelope(swigCPtr, PortReader.getCPtr(envelope));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:johnty,项目名称:YarpUnity,代码行数:6,代码来源:PortReaderBufferBase.cs

示例13: writeToNameServer

 public static bool writeToNameServer(PortWriter cmd, PortReader reply, ContactStyle style)
 {
     bool ret = yarpPINVOKE.NetworkBase_writeToNameServer(PortWriter.getCPtr(cmd), PortReader.getCPtr(reply), ContactStyle.getCPtr(style));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:johnty,项目名称:YarpUnity,代码行数:6,代码来源:NetworkBase.cs

示例14: read

 public new bool read(PortReader reader)
 {
     bool ret = yarpPINVOKE.Port_read__SWIG_1(swigCPtr, PortReader.getCPtr(reader));
     if (yarpPINVOKE.SWIGPendingException.Pending) throw yarpPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:6,代码来源:Port.cs

示例15: PortReader_director_connect

 public static extern void PortReader_director_connect(HandleRef jarg1, PortReader.SwigDelegatePortReader_0 delegate0);
开发者ID:johnty,项目名称:YarpUnity,代码行数:1,代码来源:yarpPINVOKE.cs


注:本文中的PortReader类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。