CHAOS.Portal.Client.MCM.Extensions.FormatExtension.Get C# (CSharp) Method

Get() public method

public Get ( uint id, string name ) : IServiceCallState>
id uint
name string
return IServiceCallState>
		public IServiceCallState<PagedResult<Format>> Get(uint? id, string name)
		{
			return CallService<PagedResult<Format>>(HTTPMethod.GET, id, name);
		}
FormatExtension