using System.Threading.Tasks;
[...]
try
{
Task executeTask = STask.Factory.StartNew(() => DoSomething());
//Wait for 5 minutes
int index = System.Threading.Tasks.Task.WaitAny(new[] { executeTask },
TimeSpan.FromSeconds(300));
if (index == -1)
{
//Task execution Time Out
}
else
{
//Task executed in-time
}
}
catch (AggregateException aex)
{
foreach (Exception ex in aex.InnerExceptions)
LogError(ex, ex.Message);
}
catch (Exception ex)
{
LogError(ex, "Error");
}
Thursday, December 20, 2012
Monitor a Task time out
There are some ways to wait for a task timeout.
This is the simplest:
Sunday, December 2, 2012
Asp.net menu from Web.sitemap with separators
If you use the Web.sitemap file to automatically generate Asp.net menu items, you immediatly notice all the items are "grouped together" and is not possible to put a separator. But if you use the code below, it's possible.
In the Web.sitemap file (for each node you want have a separator before):
Into code:
In the Web.sitemap file (for each node you want have a separator before):
Into code:
Protected Sub Menu1_MenuItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemDataBound
If e.Item.Text.IndexOf("[sep]") > 0 Then
e.Item.Text = e.Item.Text.Replace("[sep]", "")
e.Item.SeparatorImageUrl = Page.ResolveUrl("~/Common/images/dividerhoriz.gif")
End If
Try
If Menu1.SelectedItem Is Nothing Then
If IsNodeAncestor(CType(e.Item.DataItem, SiteMapNode), System.Web.SiteMap.CurrentNode) Then
If e.Item.Selectable Then
e.Item.Selected = True
End If
End If
End If
Catch ex As Exception
'Exception management
End Try
End Sub
'''
''' Determines if a is the ancestor of a second one.
'''
''' The to analyze.
''' A which may or may not be
''' the 's child.
''' true , if the two nodes are related, false otherwise.
Private Function IsNodeAncestor(ByVal ancestor As SiteMapNode, ByVal child As SiteMapNode) As Boolean
Dim result As Boolean = False
Try
If Not ancestor.ChildNodes Is Nothing AndAlso ancestor.ChildNodes.Contains(child) Then
Return True
Else
If (Not child.ParentNode Is Nothing) AndAlso (Not ancestor Is child.RootNode) Then
Return IsNodeAncestor(ancestor, child.ParentNode)
End If
End If
Catch ex As Exception
'Exception management
Return False
End Try
Return result
End Function
Protected Sub SiteMapPath1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.SiteMapNodeItemEventArgs) Handles SiteMapPath1.ItemDataBound
If Not e.Item.SiteMapNode Is Nothing Then
If e.Item.SiteMapNode.Title.IndexOf("[sep]") >= 0 Then
Try
e.Item.SiteMapNode.Title = e.Item.SiteMapNode.Title.Replace("[sep]", "")
Catch
'Exception management
End Try
End If
End If
End Sub
Saturday, December 1, 2012
Media sources
I decided to put together a reference post for when you're looking for stock photos, clipart, audio, music, or video. I will update this post as I am made aware of new sources.
Icons, Illustrations, and Photos
The Noun Project
http://thenounproject.com
IconFinder
http://www.iconfinder.com
Icons 8
http://www.icons8.com/
The XAML Project
http://www.thexamlproject.com/
SyncFusion Metro Studio
http://www.syncfusion.com/downloads/metrostudio
266 Icons
http://raphaeljs.com/icons/
Windows 8 App Icons
http://codefoster.com/win8icons
morgueFile
http://www.morguefile.com
iStockphoto
http://www.istockphoto.com
Corbis
http://www.corbis.com
Open Game Art
http://opengameart.org
Audio
freesound.org
http://www.freesound.org/browse
Incompetech
http://incompetech.com/music/royalty-free
Video
none yet
Icons, Illustrations, and Photos
The Noun Project
http://thenounproject.com
IconFinder
http://www.iconfinder.com
Icons 8
http://www.icons8.com/
The XAML Project
http://www.thexamlproject.com/
SyncFusion Metro Studio
http://www.syncfusion.com/downloads/metrostudio
266 Icons
http://raphaeljs.com/icons/
Windows 8 App Icons
http://codefoster.com/win8icons
morgueFile
http://www.morguefile.com
iStockphoto
http://www.istockphoto.com
Corbis
http://www.corbis.com
Open Game Art
http://opengameart.org
Audio
freesound.org
http://www.freesound.org/browse
Incompetech
http://incompetech.com/music/royalty-free
Video
none yet
Subscribe to:
Comments (Atom)