本文整理汇总了C#中Shell.Device方法的典型用法代码示例。如果您正苦于以下问题:C# Shell.Device方法的具体用法?C# Shell.Device怎么用?C# Shell.Device使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Shell
的用法示例。
在下文中一共展示了Shell.Device方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Handle_Device
private static void Handle_Device (
Shell Dispatch, string[] args, int index) {
Device Options = new Device ();
var Registry = new Goedel.Registry.Registry ();
Options.DeviceID.Register ("id", Registry, (int) TagType_Device.DeviceID);
Options.DeviceDescription.Register ("dd", Registry, (int) TagType_Device.DeviceDescription);
Options.Default.Register ("default", Registry, (int) TagType_Device.Default);
// looking for parameter Param.Name}
if (index < args.Length && !IsFlag (args [index][0] )) {
// Have got the parameter, call the parameter value method
Options.DeviceID.Parameter (args [index]);
index++;
}
// looking for parameter Param.Name}
if (index < args.Length && !IsFlag (args [index][0] )) {
// Have got the parameter, call the parameter value method
Options.DeviceDescription.Parameter (args [index]);
index++;
}
#pragma warning disable 162
for (int i = index; i< args.Length; i++) {
if (!IsFlag (args [i][0] )) {
throw new System.Exception ("Unexpected parameter: " + args[i]);}
string Rest = args [i].Substring (1);
TagType_Device TagType = (TagType_Device) Registry.Find (Rest);
// here have the cases for what to do with it.
switch (TagType) {
case TagType_Device.Default : {
int OptionParams = Options.Default.Tag (Rest);
if (OptionParams>0 && ((i+1) < args.Length)) {
if (!IsFlag (args [i+1][0] )) {
i++;
Options.Default.Parameter (args[i]);
}
}
break;
}
default : throw new System.Exception ("Internal error");
}
}
#pragma warning restore 162
Dispatch.Device (Options);
}