Search for Clarius returned 162 packages
Displaying results 1 - 20.
-
NETFx Guard
By:
The only argument validation file you need, with full refactoring support and strong-typing. Examples: Guard.NotNull(() => value, value) Guard.NotNullOrEmpty( () => stringValue, stringValue)
-
NETFx HttpEntityClient
By:
Strong-typed Linq to Web API. Builds on top of HttpClient and provides the easiest way to interface with typed REST services that are modeled around typed entities or contracts. Example: var products = client .Query<Product>("products") .OrderBy(x => x.Downloads) .Skip(25) .Take(25) .ToList();
-
NETFx Uson
By:
User String Object Notation. Serialize and parse objects from user authored and readable strings. Useful for providing flexible search options for example: foo product:vspro tag:wcf downloads:2000+ author:clarius
-
NETFx String.FormatWith Extension Method
By:
Readable formatting strings using named parameters and a custom or anonymous object as the context, like "Hello {FirstName} {LastName}".FormatWith(customer).
-
NETFx Reflector
By:
Strong-typed static reflection via Reflect: // Void static method MethodInfo cw = Reflect.GetMethod( () => Console.WriteLine); // Instance void method MethodInfo mi = Reflect<IView>.GetMethod(v => v.Show); // Boolean returning instance method MethodInfo pi = Reflect<IViewModel> .GetMethod<bool>(v => v.Save);
-
NETFx WebApi Json.NET MediaTypeFormatter
By:
A Json.NET-based MediaTypeFormatter for the WebApi that can handle text-based Json as well as binary Json (Bson). To use: var config = HttpHostConfiguration.Create().UseJsonNet();
-
Tracer: Interfaces
By:
The interfaces provided by this package allow component authors to provide tracing statements that are agnostic to the actual implementation that will be used when they are used at runtime, which is an initialization concern that belongs to the application initialization or other bootstrapping/configuration code.
-
NETFx Dynamic Xml
By:
Provides a dynamic API over XLinq: var xdoc = XDocument.Load("rss.xml"); var rss = doc.Root.ToDynamic(); // Type conversion, element traversal // using dotted path notation DateTime pubDate = rss.channel.pubDate; // Type conversion, attribute navigation // using indexer notation int port = rss.channel.cloud["port"]
-
NETFx Dynamic Reflection
By:
Provides full reflection capabilities using C# 4.0 dynamic syntax, including invoking and accessing public, internal or private, instance or static members including constructors.
-
NETFx AppDomain Data<T>
By:
Provides strong-typed persistence of data in an AppDomain, which can also be transient and automatically removed on dispose. Usage: AppDomain.CurrentDomain.SetData<Foo>(foo); var saved = AppDomain.CurrentDomain.GetData<Foo>();
-
NETFx: Reactive Event Stream Implementation
By:
Provides the implementation of a reactive extensions event stream, allowing trending and analysis queries to be performed in real-time over the events pushed through the stream.
-
NETFx Epoch Time Extension Methods
By:
Provides conversion of DateTime and DateTimeOffset into an epoch-relative number value (total seconds). See Unix Epoch in Wikipedia for more information on why this might be needed. Typical uses include using this simplified representation as an expiration time for a token, password or verification code.
-
NETFx HttpClient.Query<T>
By:
Allows querying WCF Web Api endpoints that expose IQueryable<T>, with full query support for nested relationships, etc. Does not deal with response deserialization. Look for HttpEntityClient for that.
-
NETFx IEnumerable<T>.Traverse Extension Method
By:
Traverse an enumerable tree, depth or breadth first. Example: var dirs = new DirectoryInfo("C:\\") .Traverse(TraverseKind.BreadthFirst, dir => dir.EnumerateDirectories());
-
NETFx JsonSerializer : ISerializer
By:
Implements the core NETFx ISerializer interface using a Json.NET serializer.
-
NETFx ISerializer<TStorage>
By:
Core interface that serializers can implement to serialize and deserialize an object graph to and from a Stream.
-
NETFx: Reactive Event Stream Interfaces
By:
Provides the IEventStream interface of a reactive extensions stream, allowing trending and analysis queries to be performed in real-time over the events pushed through the stream, as well as flexible subscription models.
-
NETFx IDictionary<TKey, TValue>.Find Extension Method
By:
Finds a value by key in the dictionary, or returns the default value for TValue. Just like Linq FirstOrDefault().
-
NETFx Ipsum Generator
By:
Generates Lorem Ipsum words for use in tests.
-
NETFx IDictionary<TKey, TValue>.GetOrAdd Extension Method
By:
Provides the GetOrAdd extension method for generic dictionaries, borrowed from the ConcurrentDictionary class.
- Previous
- Next