Пример #1
0
 public Command(string commandName, OneStringArg function, NoArgs helpFunction)
 {
     CommandName          = commandName;
     DelegateType         = DelegateTypes.OneStringArg;
     OneStringArgDelegate = function;
     HelpFunction         = helpFunction;
 }
Пример #2
0
 public Command(string commandName, NoArgs function, NoArgs helpFunction)
 {
     CommandName    = commandName;
     DelegateType   = DelegateTypes.NoArgs;
     NoArgsDelegate = function;
     HelpFunction   = helpFunction;
 }
Пример #3
0
 public Command(string commandName, NoArgs function, string helpText)
 {
     CommandName    = commandName;
     DelegateType   = DelegateTypes.NoArgs;
     NoArgsDelegate = function;
     HelpText       = helpText;
 }
Пример #4
0
        public string signed_helloworld()
        {
            WsiEksportPortTypeClient s   = new WsiEksportPortTypeClient();
            helloWorldRequest        req = new helloWorldRequest();
            NoArgs      noargs           = new NoArgs();
            Credentials creds            = new Credentials();

            creds.wsBrugerid = wsBrugerid;
            creds.wsPassword = wsPassword;
            var test = s.helloWorldWithCredentials(creds);

            return(test.helloWorldResult);
        }
Пример #5
0
 public SingleArg(NoArgs noArgs)
 {
 }
Пример #6
0
 public MultiArg(NoArgs noArgs1, NoArgs noArgs2, NoArgs noArgs3)
 {
 }
Пример #7
0
 public void OnMissionStart(NoArgs args)
 {
     Round = 0;
     MelonCoroutines.Start(OnRoundCoroutine());
 }
Пример #8
0
 public void MissionEnd(NoArgs args)
 {
 }