Quantcast
Channel: Obtics Work Item Rss Feed
Viewing all articles
Browse latest Browse all 22

Commented Issue: NullReferenceException in ProviderFinder [8600]

$
0
0
Hi Throb,

I have a NullReferenceException in the initialization of the Assemblies array with Silverlight :

static Assembly[] _Assemblies =
System.Windows.Deployment.Current.Parts
.Select(p => new Uri(p.Source, UriKind.Relative))
.Concat(System.Windows.Deployment.Current.ExternalParts.Select(ep => ep.Source))
.Select(uri => System.Windows.Application.GetResourceStream(uri))
.Select(strInfo => new System.Windows.AssemblyPart().Load(strInfo.Stream))
.ToArray()

When System.Windows.Application.GetResourceStream(uri)) return null.

I have fix with this trick :

static Assembly[] _Assemblies =
System.Windows.Deployment.Current.Parts
.Select(p => new Uri(p.Source, UriKind.Relative))
.Concat(System.Windows.Deployment.Current.ExternalParts.Select(ep => ep.Source))
.Select(uri => System.Windows.Application.GetResourceStream(uri))
.Select(strInfo => strInfo == null ? null : new System.Windows.AssemblyPart().Load(strInfo.Stream))
.Where(assembly => assembly != null)
.ToArray()

Thanks.
Comments: ** Comment from web user: Throb **

Ok.. Applied your suggestion.. Tx :-)


Viewing all articles
Browse latest Browse all 22

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>