當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。