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


C# BotClient类代码示例

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


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

示例1: StopCommand

 public StopCommand(BotClient Client)
     : base(Client)
 {
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:StopCommand.cs

示例2: PacketLogCommand

 public PacketLogCommand(BotClient testClient)
 {
     Name = "packetlog";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:PacketLogCommand.cs

示例3: RemoveFriendCommand

 /// <summary>
 /// Constructor for FriendsCommand class
 /// </summary>
 /// <param name="testClient">A reference to the BotClient object</param>
 public RemoveFriendCommand(BotClient testClient)
 {
     // The name of the command
     Name = "Remove Friend";
     TheBotClient = testClient;
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:10,代码来源:RemoveFriendCommand.cs

示例4: DetachCommand

 public DetachCommand(BotClient testClient)
 {
     Name = "detach";
     TheBotClient = testClient;
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:5,代码来源:DetachCommand.cs

示例5: HttpGet

 public HttpGet(BotClient Client)
     : base(Client)
 {
     Name = "HttpGet";
     TheBotClient = Client;
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:6,代码来源:HttpGet.cs

示例6: DilationCommand

 public DilationCommand(BotClient testClient)
 {
     Name = "dilation";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:DilationCommand.cs

示例7: AnimInfoCommand

 public AnimInfoCommand(BotClient testClient)
 {
     Name = "assetinfo";
     TheBotClient = testClient;
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:5,代码来源:AnimInfoCommand.cs

示例8: Follow

 public Follow(BotClient Client)
     : base(Client)
 {
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:FollowCommand.cs

示例9: CreateScriptCommand

 public CreateScriptCommand(BotClient testClient)
 {
     Name = "Create Script";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:CreateScriptCommand.cs

示例10: EchoMasterCommand

 public EchoMasterCommand(BotClient testClient)
     : base(testClient)
 {
     Name = "echoMaster";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:5,代码来源:EchoMasterCommand.cs

示例11: AtCommand

 public AtCommand(BotClient testClient)
 {
     Name = "@";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:AtCommand.cs

示例12: UploadScriptCommand

 /// <summary>
 ///  The default constructor for BotClient commands
 /// </summary>
 /// <param name="testClient"></param>
 public UploadScriptCommand(BotClient testClient)
 {
     Name = "Upload Script";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:8,代码来源:UploadScriptCommand.cs

示例13: MeCommand

 public MeCommand(BotClient testClient)
 {
     Name = "me";
     TheBotClient = testClient;
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:5,代码来源:MeCommand.cs

示例14: TurnToCommand

 public TurnToCommand(BotClient client)
 {
     Name = "turnto";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:TurnToCommand.cs

示例15: FollowCommand

 public FollowCommand(BotClient testClient)
 {
     Name = "Linden follow";
 }
开发者ID:drzo,项目名称:opensim4opencog,代码行数:4,代码来源:LindenFollowCommand.cs


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