本文整理汇总了C#中BotClient类的典型用法代码示例。如果您正苦于以下问题:C# BotClient类的具体用法?C# BotClient怎么用?C# BotClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BotClient类属于命名空间,在下文中一共展示了BotClient类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: StopCommand
public StopCommand(BotClient Client)
: base(Client)
{
}
示例2: PacketLogCommand
public PacketLogCommand(BotClient testClient)
{
Name = "packetlog";
}
示例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;
}
示例4: DetachCommand
public DetachCommand(BotClient testClient)
{
Name = "detach";
TheBotClient = testClient;
}
示例5: HttpGet
public HttpGet(BotClient Client)
: base(Client)
{
Name = "HttpGet";
TheBotClient = Client;
}
示例6: DilationCommand
public DilationCommand(BotClient testClient)
{
Name = "dilation";
}
示例7: AnimInfoCommand
public AnimInfoCommand(BotClient testClient)
{
Name = "assetinfo";
TheBotClient = testClient;
}
示例8: Follow
public Follow(BotClient Client)
: base(Client)
{
}
示例9: CreateScriptCommand
public CreateScriptCommand(BotClient testClient)
{
Name = "Create Script";
}
示例10: EchoMasterCommand
public EchoMasterCommand(BotClient testClient)
: base(testClient)
{
Name = "echoMaster";
}
示例11: AtCommand
public AtCommand(BotClient testClient)
{
Name = "@";
}
示例12: UploadScriptCommand
/// <summary>
/// The default constructor for BotClient commands
/// </summary>
/// <param name="testClient"></param>
public UploadScriptCommand(BotClient testClient)
{
Name = "Upload Script";
}
示例13: MeCommand
public MeCommand(BotClient testClient)
{
Name = "me";
TheBotClient = testClient;
}
示例14: TurnToCommand
public TurnToCommand(BotClient client)
{
Name = "turnto";
}
示例15: FollowCommand
public FollowCommand(BotClient testClient)
{
Name = "Linden follow";
}