Click or drag to resize

ServerFactoryFindAllByIds Method

Find all servers using a list of identifiers.

Namespace:  AskiaPortalCmn
Assembly:  AskiaPortalCmn (in AskiaPortalCmn.dll) Version: 1.7.0-build068
Syntax
public static IEnumerable<IServer> FindAllByIds(
	IContext context,
	IEnumerable<int> ids,
	QueryAllFilter filter = QueryAllFilter.NotDeleted
)

Parameters

context
Type: AskiaPortalCmnIContext
Context of execution.
ids
Type: System.Collections.GenericIEnumerableInt32
Ids of the server to find.
filter (Optional)
Type: AskiaPortalCmn.CommonQueryAllFilter
Filter to apply on query.

Return Value

Type: IEnumerableIServer
Return an object to iterate through the list of servers.
Examples

Find all servers using a list of identifiers.

var context = ContextFactory.CreateByUserGuid(Guid.Parse("20BE5F84-F006-49A0-9674-4B16A090AF2D"));   
var contextValidation = context.Validate();
if (!contextValidation.Success)
{
    throw contextValidation.Exception;
}

var servers = ServerFactory.FindAllByIds(context, new List<int> {2, 3, 4});
foreach(IServer server in servers)
{
    Console.WriteLine($"Server Id={server.Id}: {server.Name}");
}
See Also