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


C# Source.GetType方法代码示例

本文整理汇总了C#中Source.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Source.GetType方法的具体用法?C# Source.GetType怎么用?C# Source.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Source的用法示例。


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

示例1: Instance_OnSourceChanged

 void Instance_OnSourceChanged(Source newSource)
 {
     _source = newSource;
     if (newSource != null)
     {
         _playerModule = Domain.PresentationShow.ShowClient.ShowClient.Instance.GetPlayerModule(newSource.GetType());
     }
     FillCommandList();
     FireListChanged();
 }
开发者ID:AlexSneg,项目名称:VIRD-1.0,代码行数:10,代码来源:SourceCommandListController.cs

示例2: ShouldStoreProperties

        public void ShouldStoreProperties()
        {
            var source = new Source();
            var target = new Target();
            var sourceProperty = source.GetType().GetProperty("Text");
            var targetProperty = target.GetType().GetProperty("MyText");

            var handler = new SyncValueToHandler<Source>(m => m.Text, source, target);

            handler.SourceProperty.ShouldBe(sourceProperty);
            handler.TargetProperty.ShouldBe(targetProperty);
            handler.TargetInstance.ShouldBe(target);
            handler.SourceInstance.ShouldBe(source);
        }
开发者ID:philcockfield,项目名称:Open.TestHarness.SL,代码行数:14,代码来源:SyncValueToHandlerTest.cs

示例3: GetSourceString

        private string GetSourceString (Source src)
        {
            if (src == null)
                return null;

            var parent = src.Parent;
            if (parent == null) {
                return src.GetType ().ToString ();
            } else {
                return String.Format ("{0}/{1}", parent.GetType (), src.GetType ());
            }
        }
开发者ID:allquixotic,项目名称:banshee-gst-sharp-work,代码行数:12,代码来源:BansheeMetrics.cs

示例4: Supports

 public override bool Supports (Source source)
 {
     // This is lame but I'm too lazy to tell upstream to provide a .pc
     // for Banshee.NowPlaying.
     return source.GetType().Name == "NowPlayingSource";
 }
开发者ID:Bamistro,项目名称:openvisualizationplatform,代码行数:6,代码来源:OpenVPSourceContentProvider.cs


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